Calling $.jNotify() from within an iframe

Calling $.jNotify() from within an iframe

Hey All... using Giva Labs' new jNotify plugin ( http://www.givainc.com/labs/jnotify_jquery_plugin.htm).  I'm running a page in an iframe (not my choice, client mandated).  The parent (main) frame has the jNotify code, and I'd like the notification to appear there, not in the iframe.

I've tried:

$( parent ).jnotify( 'Your changes have been recorded', { fadeSpeed: 2500 } );

but to no avail.  No errors in firebug, but no notification fired.  The plugin works a treat when called from the parent frame itself as:

$.jnotify( 'Your changes have been recorded', { fadeSpeed: 2500 } );


I haven't worked with frames since well before I started using jQuery, so really not familiar with how to properly traverse them, or fire the plugin on the main frame from within a child iframe.

Any assistance would be appreciated.

Thanks!