> Also 2 more thing. could i put this into a new .js file and link it in the
> header and it will still work?

Yes! As long as its after the jquery.js file, like you did before.

> and what other 'fxs' can i have? Iv
> experimented with the hide() and show() ones.

jQuery comes with hide/show, slideUp/slideDown, and fadeIn/fadeOut -
they're all pretty simple, and documented here:
http://jquery.com/api/

However, the magic comes in when you use .animate, which allows you do
do stuff like:
    $("#foo").animate({ top: 100, height:  "show", opacity: "show" }, "slow");

Which will give you some sort of crazy effect. The Interface library
(http://interface.eyecon.ro/) has a whole mess of extra effects built
in to it, so that's an option too.

--John

_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to