/* * To change this template, choose Tools | Templates * and open the template in the editor. */ var Searcher = { Search: function(advanced) { var formData = $('form[name="searchform"], #searchString').serializeArray(); if (advanced) { formData.push({"name": "avanc", "value": "1"}); $('.block-search').detach(); } $.get( "soeg.inc.php", formData, function(data) { $("#content").html(data); }); } }