vote up 0 vote down star
1

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
flag

74% accept rate

2 Answers

vote up 1 vote down check

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|flag
I have tried with this part of coding but to my unluck it is not working please suggest other – Senthil Kumar Bhaskaran Aug 4 at 10:30
vote up 1 vote down

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

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

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

link|flag

Your Answer

Get an OpenID
or

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