- Show alert on page load using LAB JS
- <script>
- $LAB
- .script("js/lib/jquery-1.7.1.min.js").wait()
- .script("js/lib/jquery.mobile-1.1.0.min.js").wait()
- .script("../js/mobile/config/buildfile.js").wait()
- .script("js/init.js")
- .wait(function () {
- $(function() {
- setupHelpers();
- loadApp(true,
- function () {
- },
- function () {
- });
- });
- });
- </script>