View Single Post
  #585  
Old 12-14-2011, 03:45 AM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: X-Cart Smart Template v4.4.x

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)

Code:
fadeSearch();

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'); }); });
__________________
xcartmods.co.uk
Reply With Quote