JQuery in ServiceNow Get link Facebook X Pinterest Email Other Apps By Nishant Nigam - December 17, 2018 In order to use jQuery in ServiceNow you need to use $j or $j_glide Note: You should avoid manipulating DOM in ServiceNow, Instead use GlideForm API Read more
Scroll to div using JQuery Animate Get link Facebook X Pinterest Email Other Apps By Nishant Nigam - September 24, 2013 Here is the small piece of code, which you can use $("#scroll-btn").click(function (){ $('html, body').animate({ scrollTop: $(".area").offset().top }, 800); return false; }); Read more