Dear experts,
In RoR there is a function called
link_to_remote(name, options = {}, html_options = {})
where we can write an AJAX link.
This is the example for Rails API
link_to_remote word,
:url => { :action => "undo", :n => word_counter },
:complete => "undoRequestCompleted(requ
est)"
My problem is how to embed a stylesheet parameter inside link_to_remote?
In this case i would like to add a kind of style.display = 'none', so that the link become INVISIBLE.
Thanks in advance.
Start Free Trial