How do i bind a function using jquery to one and only one link label in my html document which has several links?
my code looks like this;
$("a").click(function(){ $("#login").slidedown("slow"); });
but this binds all the links in the document ...
Gath