Issue 464: how to remove the nyroModal feature on a link
Status:  Fixed
Owner: ----
Closed:  Apr 2010
Reported by oceat...@gmail.com, Apr 21, 2010
What steps will reproduce the problem?
1. on my link I added class nyroModal and ran $('a.nyroModal').nyroModal();
2. then later removed the class nyroModal and again ran
$('a.nyroModal').nyroModal();
3. the nyroModal effect persists ???

What is the expected output? What do you see instead?
I would like to simply disable the nyroModal Feature on my link 

What version of the product are you using? 
latest

On what operating system?
FF , windows

Apr 21, 2010
Project Member #1 nyro...@gmail.com
To disable the nyroModal feature, you should do:
$('a.myLinkWithoutNyroModal').unbind('click.nyroModal');

This way, the binding added by nyroModal would be removed.

I'm currently investigating using delegate instead of usual binding to solve all
these king of problems.
Status: Fixed