Codice PHP:jQuery('.big-link').click(function()
{
attributo = jQuery(this).parent().attr('title');
jQuery('#myModal_modifica').remove();
$.ajax({
type: 'POST',
url: 'fare.php',
data: 'modifica='+attributo,
success: function(response){
jQuery('body').after(response);
jQuery('#myModal_modifica').reveal({
animation: 'fade',
animationspeed: 150,
closeonbackgroundclick: true
});
}
});
});
Il codice sopra citato funziona su firefox, ma non su ie6, e ie7 perche?

Rispondi quotando