Hi everybody,
I'm new to Jquery and iI'm just looking for a little tip. Well, i'm
trying to call JQueryBlockUI trough flash, and to do that I need to
have a JS function like
function test2()
{
question=document.getElementById('question');
jQuery.blockUI(question,{ width: '430px', height: '380px',top:'30%',
left:'30%' });
}
Allright, this is working, i'm calling a div with a new flash movie,
but if i close the div with this:
$('#no').click(function() {
$.unblockUI();
alert(getFlashMovieObject('moteur').GetVariable('aron'));
});
It can't load the movie anymore and i need to refresh the browser.
Any clue ?