> I see a couple things that I would change if it were my code.
>
> 1. change
>     $().ready(function(){
> to
>     $(document).ready(function(){

fyi, these all work the same:

$(document).ready(function() {});
$().ready(function() {});
$(function() {});

_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to