Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <script type="text/javascript">
  2. var title;
  3. var plot;
  4. var image;
  5. $(document).ready(function() {
  6. $('#search_results').hide();
  7. $("#search_results").mouseenter(function() {
  8. $("#search_results").html('<br /><img src="'+image+'" width="110" height="150" /><br />'+plot);
  9. }).mouseleave(function() {
  10. $("#search_results").html('<br /><a href="#">'+title+'</a>');
  11. });
  12. });
  13. function searchBox(text)
  14. {
  15. $.get('ajax/data.php?type=1&search_text='+text, function(data)
  16. {
  17. spliter = data.split("<>");
  18. title = spliter[0];
  19. image = spliter[1];
  20. plot = spliter[2];
  21. $('#search_results').hide();
  22. $("#search_results").html('<br /><a href="#">'+title+'</a>');
  23. $('#search_results').fadeIn("fast");
  24. });
  25. }
  26. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement