By admin , 31 October, 2023 Prevent page elements drag n drop window.ondragstart = function() { return false; } Tags jquery
By admin , 31 October, 2023 Prevent mouse right click on images. $('body').on('contextmenu', 'img', function() { return false; }); Tags jquery
By admin , 2 August, 2023 jQuery: find element with part of class $("jdiv[class*='button_']").addClass('jivosite-button'); Tags jquery
By admin , 30 July, 2023 jQuery: smooth scroll to ID $('html, body').animate({ scrollTop: $("#tour-desc").offset().top }, 500); Tags jquery