Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hello i am using jqery mobile to develop a mobile website the problem is that links dont work in Internet explorer mobile

<a rel="external" href="http://www.external-site.com" title="" class="ui-link" style="text-decoration: none; ">

that is how the link looks i tried also with:

<a data-role="none" href="http://www.external-site.com" title="" class="ui-link" style="text-decoration: none; ">

i am wondering how are the links to external domains sopposed to look to be able to work in windows mobile internet explorer

share|improve this question

1 Answer

up vote 0 down vote accepted

Try linking the page like this:

<a data-role="none" href="http://www.google.com" class="ui-link" rel="external"  style="text-decoration: none; ">Multi-page link</a>

There is a chapter aboout linking pages in jQuery mobile docs. Have you read those?
http://jquerymobile.com/demos/1.0a4.1/docs/pages/link-formats.html

http://jquerymobile.com/test/docs/pages/page-links.html

Based on this question: jquery Mobile urls add # tag which breaks forms in Internet Explorer
Setting data-ajax="false" should help.

share|improve this answer
Yest i have read it and i have tried the examples.As i said the problem is specific for internet explorer mobile – user1503425 Sep 10 '12 at 10:08
Have you tried setting data-ajax to false? – Borewitsch Sep 10 '12 at 10:14
I already tried the data-ajax option and apparently it doesnt help I have table in my <a> element <table> <tr> <td> <img class="promoImage" src="/Content/Images/Promotions/<%= Model[i].PromotionImage %>" alt="<%= Model[i].PromotionTitle %>" /> </td> <td> <div class="greyText" style="text-align:left;"> <%= Model[i].PromotionTitle%> </div> </td> </tr> </table> – user1503425 Sep 10 '12 at 10:46
and that is what is causing the problem can you give me advice what to do – user1503425 Sep 10 '12 at 10:47
Simple way out may be handling click in javascript and setting window.location.href :P – Borewitsch Sep 10 '12 at 10:48
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.