/** # mod_jvajaxsearch - JV AJAX SEARCH # @version 2.5.1 # ------------------------------------------------------------------------ # author Open Source Code Solutions Co # copyright Copyright (C) 2011 joomlavi.com. All Rights Reserved. # @license - http://www.gnu.org/licenses/gpl-3.0.html GNU/GPL or later. # Websites: http://www.joomlavi.com # Technical Support: http://www.joomlavi.com/my-tickets.html -------------------------------------------------------------------------*/ (function($) { $(document).ready(function() { $( "#jvsearchajax" ).autocomplete({ source: (function(){ var href = location.href; if(href.indexOf('?') == -1) href += '?'; href += '&jvajaxsearch=1'; return href; })(), minLength: 1, select: function( event, ui ) { location.href = ui.item.redirect; return false; } }).data( "autocomplete" )._renderItem = function( ul, item ) { var img=''; if(item.img) img = " "; return $( "
  • " ) .data( "item.autocomplete", item ) .append( "" + "
    " + img +"
    " + "

    " + item.title + "

    " + item.desc + "
    " ) .appendTo( ul ); }; jQuery("#jvsearchajax").keypress(function(e){ if(e.which==13){ $('.ui-autocomplete').css("display","none"); } }); }); })(jQuery);