-2

I would like to change href target in a mobile version.

Omar
  • 32,160
  • 9
  • 67
  • 108
Green
  • 11
  • 4

1 Answers1

2
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
    document.getElementById("myAnchor").href = "mobile-url";   //change url
    document.getElementById("myAnchor").target = "_blank";     //change target
}

You can refer this to find "the best way to detect a mobile device in jQuery"

Community
  • 1
  • 1
Munawir
  • 3,196
  • 8
  • 31
  • 47