I ran into a problem. I am using a command button in JSF like this
<h:form>
<h:commandButton value="Next" action="#{handler.nextPage}" data-theme="a" />
</h:form>
In the backend I've a method returning "page2?faces-redirect=true"
Now, when i remove the
<script src="js/jquery.mobile-1.4.5.min.js"></script>
In my header it redirects me fine to the next page and show me the new URL of the second page. But when i have the jquery mobile-tag there...it goes to the next page and shows me the same URL as from the page I am comming from
Someone an idea how to fix that?