So while testing on my computer it works just fine, but as soon I test it on my phone it breaks...
<%: Html.ActionLink("About", "About", "Home", null, new { data_role = "button", data_iconpos = "right", data_icon = "arrow-r", data_shadow = "false", @class = "arrowButton" })%>
That successfully renders a hyperlink styled like a button, and when pressed on my phone gives the appropriate feedback to let me know I pressed it. However this button here
<a id="submitBtn" href="" data-role="button" data-theme="b" onclick="$('#formControl').submit();" >Sign In</a>
and EVERY OTHER BUTTON on the site (this was originally an input with type="submit" on it, but I changed it to make as much the same between the 2 as possible) won't show any feedback when you press them on my phone. Any ideas why this might be happening?
tl:dr Hyperlinks visually show clicks on my phone but buttons don't.