== Desired result:
I want a html file to be loaded into a div element. When the file is
injected, I want it to fade in.

== Problem:
I am a rookie when it comes to jQ (and js). I can't figure out how to
extend the onload function with the fadeIn effect.

== This is my jQ code:
$(document).ready(function() {

        $("p a") . click(function() {
                $("#text-to-show") . load("text_to_show.htm");
        });
});

== Thanx

Reply via email to