Guest User

Untitled

a guest
Jun 19th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. //somewhere on top.
  2. el.click(function(e){
  3. el_content.dialog({ dialogClass: 'dialog-rt', height: 330 })
  4. .show();
  5. e.preventDefault();
  6. })
  7. .hover(function(){
  8. window.status = "";
  9. })
  10.  
  11. //somewher on bottom of page
  12. $.elementReady('#movie_info', function() {
  13. var add_to_list_content = $(this);
  14. var cancel_button = $("#addtolist_cancel_button");
  15. cancel_button.bind('click', function(e) {
  16. $('#addtolist_list')[0].selectedIndex=0;
  17. add_to_list_content.dialog('close');
  18. e.preventDefault();
  19. });
Add Comment
Please, Sign In to add comment