-2

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

Omar
  • 32,261
  • 9
  • 68
  • 109
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,308
  • 8
  • 32
  • 49