I'm not sure, but I think click() will only fire the events bound with jQuery itself. RokBox seems to be based on mootools, have you tried the mootools way?
$('test').fireEvent('click'); Also, are you sure you're not having conflicts between jQuery and mootools? Which one is using the caret symbol ($)? Best would be to stick to a single library, as you'll have overlapping functionality (longer download times) and the possibility of problems like this. On Jan 31, 5:38 am, Andy789 <e...@abcstudio.com.au> wrote: > As I can see quite many posts on this subject I wanted to explain why > I need this. I generate links for RokBox modal window - something like > > <a id="test" href="flash/pdfs/test.html" rel="rokbox">test</a> > > next, I need to trigger these links from jscript function (from the > external flash application). I could not figure out the way how to > call RokBox directly and have to finc out the way how to trigger links > via jquery or mootools or whatsoever. > > Any suggestions?