Functions and plugins not functioning on second page

Functions and plugins not functioning on second page

jQuery Mobile has been a great framework to build my website/app (using PhoneGap) but while developing it inside the desktop browser, I've discovered that my functions are not being run until the page is refreshed directly.

My app consists of 3 pages:
- intro screen to choose which language
- main form 
- results page to print form inputs

I go to the second page using a link 
  1. <a href="en/form.html" data-role="button">English</a>
and inside that second page I use the validate plugin to test the form
  1.       <script type="text/javascript">
  2.       $(document).ready(function() {
  3. // form submission
  4. $("#login-form").validate({
  5. submitHandler : function(form) { 
  6. processLoginData(form); 
  7. console.log("submitting..."); 
  8. });
  9. $('#submit-button').click(function(e) { 
  10. $("#login-form").submit() 
  11. });
  12.  });
  13. </script>
Clicking the links from the first to second page, the script is not run, but refreshing the page directly, it is. I include each script inside every page, so the script has access to all required files. Is there something about the way jQuery handles adding pages to the DOM that would prevent my scripts from running?