In the header.tpl file, the div containing the search module is named "search"
Code: Select all
Line 46 <div id="search">
Code: Select all
Line 163 $('#module_search input').keydown(function(e) {
Line 164 if (e.keyCode == 13) {
Line 165 moduleSearch();
Line 166 }
Line 167 });
Code: Select all
Line 163 $('#search input').keydown(function(e) {
Line 164 if (e.keyCode == 13) {
Line 165 moduleSearch();
Line 166 }
Line 167 });