Advertisement
Guest User

Generic Loop - Template 2

a guest
Mar 26th, 2013
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script type="text/javascript">
  2. !function($, window, document, _undefined)
  3. {
  4.     XenForo.SedoChinese =
  5.     {
  6.         SedoAutoLoop: function($form)
  7.         {
  8.             setInterval(function () {
  9.                 $('#loading').append('.');
  10.             },500);
  11.  
  12.             setTimeout(function () {
  13.                 $('#autosender').trigger('click');
  14.             }, 3000);
  15.         }
  16.     };
  17.  
  18.     XenForo.register('form.SedoAutoLoop', 'XenForo.SedoChinese.SedoAutoLoop');
  19. }
  20. (jQuery, this, document);
  21. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement