how to trigger jquery from within flash??
Hi guys,
I admit I'm not majorly up to speed with the exact ins and outs of jquery so appologise if this is straight forward, but I can't find a solution to my problem anywhere on the web.
The script I have is as follows:
$(document).ready(function(){
$(".iframe").colorbox({width:"600px", height:"400px", iframe:true});
});
The <a> which I use to launch the colorbox looks like:
<a class='iframe' href="http://www.google.com">open google</a>
This opens up google in a lightbox style window within the centre of the browser window.
As you can see, any <a> with the 'iframe' class opens it's href link using the jquery colorbox.
I really can't understand how I would replicate the <a> from within flash.
It's not like I can just call a javascript function (i.e 'javascript:colorbox(parameters here);') is it?
help would be MASSIVELY appreciated!!