jQuery ajax request internet explorer popup blocked

yazeed4you

New Member
this is my function to retrieve a code by passing a variable to a page:`jQuery(function() {\[code\]jQuery('#carrelli_selezione').change(function(event){ var categoria_alimentazione = jQuery('#carrelli_selezione').val(); jQuery.ajax({ url: 'test_alimentazione.php', //dataType: 'html', crossDomain: 'true', type: 'POST', data: ({ 'variabile_alimentazione': categoria_alimentazione }), success: function(data1) { jQuery('#alimentazione_select').html(data1); } });});});`\[/code\]This passes a variabile to the page then I want to load the content in my div...but explorer doesn't work because block the popup...How can I work around this?thanks
 
Back
Top