Advertisement
redboxmedia

Untitled

May 1st, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.42 KB | None | 0 0
  1. if ($('ul.navigation_list li').length>0) {
  2.  
  3.         // already loaded do nothing
  4.  
  5.     } else {
  6.  
  7.         // load the results from the separate ajax-search/ page
  8.  
  9.         $(".navigation_list").load("ajax-search/ li ", function() {
  10.             $('#searcher').hideseek({
  11.                 nodata: '',
  12.                 hidden_mode: true,
  13.                 highlight: true,
  14.                 headers: '.origin'
  15.             });
  16.             $("input.iclass").attr("placeholder", "Enter search text");
  17.     });
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement