I would like to call a jQuery pager function (p) defined as:
function p(page)
{
$('#pitch').load(page);
}
how can I call this function inner swf with method getURL..
note: normally I call it in html tag as:
<a href="#" onclick="p('somefile.php?id=someid');">link name</a>
You can use the externalInterface class provided by default like follows:
now here the javascript function could be your defined function i.e p(as in code above) , or you can sirectly pass the string $(‘#pitch’).load and pass the parameter pageas string.