jQuery Mobile anchor buttons used in ASP.NET MVC view don't change color after click event (Hard to know if button was pressed in mobile UI)
Hi,
I am using jQuery mobile anchor buttons in MVC "mobile" view [.mobile.cshtml] . Following is the code for button named "Filter":
<a data-role="button" data-theme="d" data-inline="true" data-corners="true" style="height:6px; line-height:5px; font-size:small" onclick="GotoFilters()">Filter</a>
In phone UI, when above button is pressed, it does not change button color to reflet button click.
Thus, its hard to understand if button click happened.
following are the libraries I am loading in mvc view:
<script src="~/Scripts/jquery-1.10.2.js"></script>
<script src="~/Scripts/jquery.mobile-1.4.2.js"></script>
<link href="~/Content/jquery.mobile-1.4.2.css" rel="stylesheet" />
<link href="~/Content/jquery.mobile-1.4.0.min.css" rel="stylesheet" />
Anything missing in above or wrong?
Thanks in advance,