function checkLangPack(){ $('p#resultCheckLangPack').hide(); if ($('#iso_code').val().length == 2) { $.ajax( { url: "ajax_lang_packs.php", cache: false, data: "iso="+$('#iso_code').val() , success: function(ret) { if (ret == "ok") $('p#resultCheckLangPack').html(langPackOk+' '+download+'
'+langPackInfo).show("slow"); else if (ret == "offline") $('p#resultCheckLangPack').show('slow'); else $('p#resultCheckLangPack').html(noLangPack).show("slow"); } } ); } } $(document).ready(function() { $('p#resultCheckLangPack').hide(); });