I used jQuery Mobile Builder to download a build for just transitions. But I can't get it to work with this build. The only way I've gotten it to work is to use the entire jQuery Mobile framework, but then it messes up the rest of my pages because it wasn't meant to use all of the other jQuery Mobile features.
I included my files in the like so:
<link rel='stylesheet' href='javascript/jquery.mobile.custom.structure.css' />
<link rel='stylesheet' href='javascript/jquery.mobile.custom.theme.structure.css' />
<script type="text/javascript" src="javascript/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="javascript/jquery.mobile.custom.js"></script>
Then I want it to transition to the next page when this link is clicked/tapped:
<a class="create-hud-but" data-transition="pop" href="create2.html">
Like I said, this all works if I include full jQuery Mobile. Is there an easy way to just cut out the part for page transitions? Or am I maybe including the wrong version of jQuery for the custom build? I haven't even been able to find out which version of jQuery Mobile goes with which version of jQuery (although I've seen people mentioning the version have to match up).