У меня есть функция JS ниже, которая генерирует href, который включает в себя класс JQ Mobile data-role = "button".Это игнорируется браузером - может кто-нибудь предложить решение.
<script>
function showCONTACTDETAIL() {
var tryouttext='<a href="" data-role="button">hey this is cool</a>';
jQuery('#tryout').html(tryouttext);
}
$('#cusdetail').live('pageshow', function () { showCONTACTDETAIL(); });
</script>