I have a project in .net with mvc 3, I'm trying to implement jquery mobile but I have some issues with custom js, here is part of the code of the _Layout.Mobile.cshtml
<body>
<div data-role="page" id="div_layout">
<div data-role="header">
<a href="/" data-icon="home">Inicio</a>
<h1>Title</h1>
</div>
<div data-role="content">
@Html.Partial("_LogOnPartial")
@RenderBody()
</div>
<div data-role="footer">
<h4>Footer text</h4>
</div>
</div>
<script type="text/javascript">...</script>
<script type="text/javascript" src= "@Url.Content("~/Content/js/utilities.js")">
</script>
</body>
The result html is (image link):
The _LogOnPartial partial view use some functions in the utilities.js file, the thing is that this js file must be after the partial view, if not it doesnt work, until here everything's fine, but when I submit forms in the body section all the code in data-role="content" is duplicated and placed at bottom, here's the html result (image link):
so the content in the _LogOnPartial partial view stops working, the config file has ajaxEnabled: true, when I disable the ajax everything works fine but I'd like to use the jq mobile transitions, also I could not show loading message with ajaxEnabled: false, Could Somebody help to workaround this? thanks in advance.
Ok thanks for the answer, the _LogOnPartial partial view code is
<div id = "loginbox">
<div class="User">
<label for="login_user">Usuario:</label>
<input id="login_user" name="login_user" type="text" required id="basic" value="" data-mini="true" />
</div>
<div class="Password">
<label for="login_password">ContraseƱa:</label>
<input id="login_password" name="login_password" type="password" required id="basic" value="" data-mini="true" />
</div>
<div class="boton_login">
<button type="submit" id="login" data-theme="a">Login</button>
</div>
<div id="login_error_message">
<span id="login_error_message_desc"></span>
</div>
</div>
part of the content of utilities.js is
$("#login").click(function () {
alert('this never happens');
//something
});
when the page load for the first time it works fine, but then it stops working (when the ajax duplicate the content)