Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. simpleSearch( "a search phrase", function( data ) {
  2. console.log("results = " + data);
  3. }).done(function(e) {
  4. console.log( "second success" );
  5. })
  6. .fail(function(e, f, g) {
  7. console.log( "error" );
  8. })
  9. .always(function(e) {
  10. console.log( "complete" );
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement