Just wanted to ask if nyroModal has the opportunity to add some params to
the href witch is loaded?
Let me show an example:
<a href="/settings/playlist/" class="nyroModal">Playlist</a>
When peoples click at this link, they will see /settings/playlist/ because
nyroModals sends an parameter to the URL. This parameter is: &nyro=yes
on /settings/playlist/ i have a script like this:
if($_GET["nyro"] != "yes") { header("location: http://www.google.dk/"); }
does nyroModal has this function? - if not, i will recommend this. It is
very useful =)
You could do it by using the ajax setting as follow: $.nyroModalSettings({ ajax: { data: 'nyro=yes' } });