Minor update for the Smart Template dynamic search addon, to make it work better with Chrome and IE...
1) In skin/smart_template/custom/header.tpl
Remove this around line 80... (part of the search input field code - skip this if it doesn't exist)
2) Then in skin/skin/smart_template/custom/js/smart_dynamic_search/smart_dynamic_search.js
At the very end, replace...
Code:
// Hide dropdown onblur
function fadeSearch() {
// jQuery
$('#ajax_listOfOptions').fadeOut('slow');
// non jQuery
//var theSearchBox = document.getElementById('ajax_listOfOptions');
//theSearchBox.style.display = 'none';
};
With...
Code:
// Fade Out Search Dropdown on click elsewhere
$(document).ready(function() {
$("body:not(#ajax_listOfOptions)").click(function(){
$("#ajax_listOfOptions_iframe,#ajax_listOfOptions").fadeOut('fast');
});
});