1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| jQuery('a.getlang').click(function (){
var lg = jQuery(this).attr("hreflang");
if (jQuery.browser.msie) {
jQuery('a.getlang').each(function(lg){
var lg = jQuery(this).attr('hreflang');
var thislink = jQuery(this);
thislink.attr({
'href': '?strLangue=' + lg
});
});
}else{
jQuery.ajax({
type:'get',
url: "/admin",
data: "strLangue="+lg,
async: false,
error: function(){
alert("Error request language");
},
beforeSend: function(){
jQuery("#contenu, #menu").hide();
jQuery("#content").html('<img id="imgLangLoad" src="/framework/img/35-1.gif" alt="Magix CMS" width="66px" height="66px" />');
},
success: function() {
jQuery("#contenu").show('fast');
}
});
}
}); |