Has anyone been able to get jQuery Mobile working with DNN?
I'm getting some ajax conflicts with the links. I can get jQuery Mobile working but it breaks the admin links in DNN 7. The closest I can get it is using this in the header:
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile.structure-1.3.2.min.css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).bind("mobileinit", function () {
$.mobile.ajaxEnabled = false;
});
</script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
When I use this, the jQuery Mobile user interface works fine but I cannot enter the text/html editor when I click on "Edit Content"
More specifically, the link html changes from:
<a href=" void(0)"></a> (should be this)
to:
<a href=" dnnModal.show('http://domain.com/Rev1/Rev15/tabid/106/ctl/Edit/mid/491/Default.aspx?popUp=true',/*showReturn*/false,550,950,true,'')"><img src="/images/edit.gif"><span>Edit Content</span></a>