Warning: Undefined array key "title" in /home/u593943216/domains/wp-experts.in/public_html/secure_content/themes/wp-experts/inc/classes/class-hooks.php on line 151
In cases where the viewport is resized ABOVE the mobile bp it works, but when the viewport is resized to desktop slick does not initialize. You can use below code to work the slick properly HTML <section class="responsive slider"> <div><img src="http://placehold.it/350x300?text=1" /></div> <div><img src="http://placehold.it/350x300?text=2" /></div> <div><img src="http://placehold.it/350x300?text=3" /></div> <div><img src="http://placehold.it/350x300?text=4" /></div> <div><img src="http://placehold.it/350x300?text=5" /></div> <div><img
Hello Friends, If you want to display any number with two decimal digits then you need to use toFixed() JavaScript function during parsing the float number. Example : I want to display cart total amount with two decimal places only. Let say actual total amount is 123.4567 and I want to display amount is 123.45
Hello Friends, Today we are sharing a useful information to make google recaptcha field required. You can try with below sample code to add validation for recaptcha field. Sample 1 – Pure javascript <script> window.onload = function() { var $recaptcha = document.querySelector('#g-recaptcha-response'); if($recaptcha) { $recaptcha.setAttribute("required", "required"); } }; </script> Sample 2 – With jQuery <script>
Normally when we click on the pdf file link it is open in browser instead to download it on our local system. So if you want to force to download the pdf on local system instead to open into browser then you can do it very easily. I am here explain you helpful trick to
Here we are going to explain the way of play YouTube video on different speeds. As you normally you can’t set the speed of your YouTube video in embed iframe code. To set change speed of YouTube video, you will require to use the YouTube APIs. Without Youtube API you can’t change youtube video play
Hi Guys, You can protect your website content by Disallow copy content, Disallow Right Click, Disallow to view page source(Ctrl+U)…and so on. I am here explaining two way to give protection of site content for all pages . Disable copy content using css Disable copy content using plugin Disable copy content using plugin If you
Posted by WordPress Experts on November 30, 2019 7144 Views Share on
Hello Everyone, Are looking forward to implement a feature to download a file after submit form from your website and after that it redirects them to another page or thank you page. For example, If you want to give a option to your site visitor to auto download the file after submit the form then
Posted by WordPress Experts on November 27, 2019 6170 Views Share on
If you want to stop multiple form submission issue with jQuery validation then don’t worry. I am here going to explain you a very simple way to fix multi time form submition issue with jquery validation To prevent the multiple form submit issue with jQuery validation, You will require to add submitHandler function in your
Hi Friends, If you are facing HTML block height related responsive issue then you can use given below HTML to make all boxes in a same height CSS <style type="text/stylesheet"> div.box { float: left; width: 23%; background: #ccc; margin: 10px 1%; padding: 1%; } @media all and (max-width: 900px) { div.box { width: 48% }
Hello Friends, If you want to close the ColorBox Popup window using your custom button then use given code on your site. Example : <input type=”button” value=”Continue to map” id=”et-reset” class=”custom-close”> <script> colorbox = jQuery.colorbox; jQuery(".custom-close").click(function() { colorbox.close(); }); </script> Hope you all will be enjoy this script. http://www.jacklmoore.com/colorbox/ Happy New Year