|
AJAX problem in IE
/* ajax loading main menu system */
$(function()
{
$('.main_menu li a').on('click',function() {
var path=$(this).attr('href');
$('#dynamicka_cast_stred_webu').empty().html('<img src="boxes/images/ajax-loader (1).gif" style="margin-top: 180px;" />');
$('div#dynamicka_cast_stred_webu').load(path);
return false;
});
}); /* koniec ajax loading blog system */
Hi that's my code... but.. i have a question... that's works perfectly in all browserrs except a IE ... could you say me where is a problem?? :/ i was trying to google something but without solution. Thx i am really acquisitive where is a problem.
Last edited by Trki; 04-19-2012 at 12:30 PM..
|