asp.net mvc 3 - MVC ActionResult to force JQuery Mobile to refresh the page? -
i have mvc3 project using jquery mobile , have slight issue when return action result view, jquery mobile not reloading page , therefore <script>
tags within <head>
not being loaded?
i had same issue when redirecting page in jquery mobile , fix adding rel="external"
tag.
is there anyway can force page reloaded within action result?
thanks, mike
try in action result..
window.location = 'your full path';
Comments
Post a Comment