var x= document.getElementsByClassName("ApplyCss");
how to convert this code to Jquery. i tried with
var x= $("ApplyCss");
but its not working
yogesjoshi says: var x= $("ApplyCss");
Change the above with the below code.
var x = $(".ApplyCss");
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.