Guest User

Untitled

a guest
Jun 23rd, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. $(function() {
  2. //AJAXIFY EVERYTHING
  3. $('.ajaxify').ajaxify();
  4.  
  5.  
  6. $('#form').ajaxify({
  7. event: 'submit',
  8. target: '#container',
  9. loading_img: 'images/load.gif',
  10. link: 'go.php',
  11. forms: '#form',
  12. title: 'data sent',
  13. method: 'POST',
  14. onComplete: function(options) {
  15. $('iframe > h1').contents().find('h1').live('onLoad',
  16. function(e) {
  17. $(e.target).addClass('list-highlight')
  18. });
  19.  
  20. }
  21. });
  22. });
Add Comment
Please, Sign In to add comment