Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 15th, 2012  |  syntax: None  |  size: 0.39 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Show alert on page load using LAB JS
  2. <script>
  3.   $LAB
  4.   .script("js/lib/jquery-1.7.1.min.js").wait()
  5.   .script("js/lib/jquery.mobile-1.1.0.min.js").wait()
  6.   .script("../js/mobile/config/buildfile.js").wait()
  7.   .script("js/init.js")
  8.   .wait(function () {
  9.     $(function() {
  10.     setupHelpers();
  11.     loadApp(true,
  12.       function () {
  13.       },
  14.       function () {
  15.       });
  16.     });
  17.   });
  18. </script>