how to load a page and then run a jquery function

Posted by Khawar on Stack Overflow See other posts from Stack Overflow or by Khawar
Published on 2010-04-04T11:23:32Z Indexed on 2010/04/04 11:33 UTC
Read the original article Hit count: 243

Filed under:
|
|
|

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 ?

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about function