Smooth scroll to div id jQuery Get link Facebook X Pinterest Email Other Apps June 25, 2019 $ ( "#button" ). click ( function () { $ ( 'html, body' ). animate ({ scrollTop : $ ( "#myDiv" ). offset (). top }, 2000 ); }); Read more
set time to call function jquery Get link Facebook X Pinterest Email Other Apps June 25, 2019 setTimeout(appand, 4000); function appand(){ alert('123') ; } Read more
Explode in jquery Get link Facebook X Pinterest Email Other Apps June 05, 2019 var myStr = $('.user-berufserfahrun').html(); $('.user-berufserfahrun').empty(); var strArray = myStr.split(","); for(var i = 0; i < strArray.length; i++){ $( ".user-berufserfahrun" ).append( "<p>" + strArray[i] + "</p>" ); } Read more
get params from url jquery Get link Facebook X Pinterest Email Other Apps June 03, 2019 <script> jQuery(document).ready(function($){ $.urlParam = function(name){ var results = new RegExp('[\?&]' + name + '=([^&#]*)').exec(window.location.href); if (results==null) { return null; } return decodeURI(results[1]) || 0; } var land = $.urlParam('land'); alert(land); }); </script> Read more