saasbook

get_movie_info.js

Aug 15th, 2013
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. // replaces lines 10-13 in previous code excerpt
  2. getMovieInfo: function() {
  3. $.ajax({type: 'GET',
  4. url: $(this).attr('href'),
  5. timeout: 5000,
  6. success: RP.showMovieInfo,
  7. error: function() { alert('Error!'); }
  8. });
  9. return(false);
  10. },
Add Comment
Please, Sign In to add comment