So, I try to speed up my page (avoiding some queries) and wonder if anyone knows how to save the following code without loading the entire JQuery library:
$("#div1").click(function () {
$("#div2).hide();
$("
})
Of course, this code needs a jQuery library to work, but it is heavier than my page itself.
Is there a way, somewhere, to simply select the code needed from the library and paste it into a line (in my html)?
Thank,
Larry source
share