go to page without jquery

go to page without jquery

I am totally new to jquery and frankly find it so overwhelming I want to break reference to it for all but one page.  One day I may try to learn it,,,but the curve seems...shallow, at least for me.
I am using this method to create a drag-drop sortable list for a game I developed for friends - so I do NEED jquery for that page:
http://forresst.github.com/2012/06/22/Make-a-list-jQuery-Mobile-sortable-by-drag-and-drop/ which uses:
    
  1. <link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.css" />
  2. <script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
  3. <script src="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>
  4. <script src="http://code.jquery.com/ui/1.8.21/jquery-ui.min.js"></script>
  5. <script src="jquery.ui.touch-punch.min.JavaScript"></script>

I only want jquery on my main.php game page, but when I send a form to say enterevents.php jquery formatting hangs around, and my JavaScript functions  in the header of enterevents.php no longer work.

I have my own css file, but it seems the jquery mobile css from the sending page cannot be budged - my formatting does not take hold.
How do I break any reference to formatting etc on main.php when I create a link or form that takes the user to another page?
thanks.



[moderator moved to jQuery Mobile]