up vote 0 down vote favorite
2
share [g+] share [fb]

How to activate and Deactivate the Rails code hyperlink using JQuery for the following code

<%= f.add_associated_link "Add another email address",:class => 'add' %>

please suggest me to solve this major problem
link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Well, I you want to deactivate you could do something like

var activated = false;
$(".className").click(function(e){
 if(!activated){
   e.preventDefault();
 }
}

But you might wanna be a bit more specific about what you want to do.

link|improve this answer
I have tried with this part of coding but to my unluck it is not working please suggest other – Senthil Kumar Bhaskaran Aug 4 '09 at 10:30
feedback

Do you want to hide/show the link? If so, you can use toggle.

$('a.add').toggle();

There's also hide() and show().

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.