> $("input#"+magazine).set("onclick","hideComment('"+magazine+"');");
That is some interesting code. Kind of an unobtrusive way of
inserting obtrusive javascript. ;-)
Try this:
$("#"+magazine).click(function() {
hideComment(magazine);
});
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/
