you are missing a ' after the remlink class name, and I think you want to
change your select statements to this format:

$("#ShowLinks .taglink").click( function ()....


RoadRat wrote:
> 
> Ok, lets forget the id question. The problem persist:
> 
> <div id='ShowLinks'>
> -- One row:
> <div id='450'>
> a class='taglink' href="blah.php">
> a class='remlink href="bleh.php">
> </div>
> ...
> other rows and different id's...
> ...
> </div>
> 
> <script type="text/javascript">
>   $(document).ready(function(){
>     $("#ShowLinks").find("taglink").click(function(){
>        ---- This one works ----
>       return false;
>     });
> 
>     $("#ShowLinks").find("remlink").click(function(){
>         ---- This one DOES NOT ----
>       return false;
>     });
>   });
> </script>
> 
> ???
> 
> Thanks in advance,
> RoadRat
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Extrange-problem-with-.click%28%29-tf2849034.html#a7982862
Sent from the JQuery mailing list archive at Nabble.com.


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

Reply via email to