Guest User

Untitled

a guest
Jun 20th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. $(function() {
  2. $("#dropMenu li").click(function() {
  3. passSearch($(this).children("a:first").text().toLowerCase());
  4. });
  5. });
  6.  
  7. function passSearch(engine) {
  8. var query = $("#txtSearch").val();
  9. if ( engObj[engine] ) {
  10. window.open(engObj[engine] + query);
  11. }
  12. };
Add Comment
Please, Sign In to add comment