how to load a page and then run a jquery function
- by Khawar
on master page i put this code to load page in same master page and then run jqeury function
i m trying this
$(document).ready(function() {
$("#mainContactLink").click(function() {
$(body).open("about-us.aspx", self);
$(" #abtContacts").fadeIn(1000).siblings("div").fadeOut(100);
$(" #abtContacts").siblings();
});
});
its not working.. any idea ?