$(function() { $("#mainmenu li").hover( function () { $(this).find("ul").show(); }, function () { $(this).find("ul").hide(); } ); }); function click_banner(id) { $.ajax({ type: "GET", url: "/index.php/content/showBanner", data: "id=" + id, success: function(link){ //$('#wrapper').append( link ); void( window.open( link ) ); //window.document.location = link; } }); } function popolateTowns() { $('#loading').show(); $('#cap_id').children("option").each(function(x){ $(this).remove(); } ); var href = base_url + "/content/getTowns/prov/" + $('#prov').val(); $.getJSON( href, function(json) { $('#loading').hide(); for(var i=0; i< json.length; i++ ) { $('').appendTo('#cap_id'); } }); }