pertrai1
pertrai1

Reputation: 4318

jQuery touch links not working

I have some links that are not working on our mobile view of our site. All our site is doing is showing the mobile version if the path in the domain has /m in it. Everything seems to be working fine except for these 2 links:

<ol>
 <li>
  <a id="turn_off_mobile_link" href="http://oursite.com/welcome.htm?mobile_view_turn_off=1" target="_webapp">Turn off Mobile View</a>
 </li>
 <li>&nbsp;</li>
 <li>
  <a id="logoff_link" href="http://oursite.com/login.htm?logout=true" target="_webapp">Sign-Out</a>
 </li>
</ol>

I don't know what the issue is with these links as they are inconsistent across mobile devices.

Thank you for any help.

Upvotes: 1

Views: 125

Answers (1)

pertrai1
pertrai1

Reputation: 4318

The best solution I found for this without having to make much change was to get rid of the target="_webapp" and using rel="external". This seemed to work the best.

Upvotes: 1

Related Questions