Search code examples
phpjqueryhtmljquery-mobilejquery-mobile-button

Cannot open links in new tab with jquery mobile


Why I can't open a link in new tab on my mobile phone? But when I tried running my script on the PC Desktop, that link can be opened in new tab..

This is my script

if($data[$flag] == 1){
    echo "<li><a href=\"img2.php?x=".$fix[0][0]."&y=".$fix[1][0]."\">Sektor ".($flag + 1)."</a></li>\n";}
    $flag++;

any suggestions?


Solution

  • Try it.

     if($data[$flag] == 1){
     echo "<li><a href=\"img2.php?x=".$fix[0][0]."&y=".$fix[1][0]."\" target="blank">Sektor ".($flag + 1)."</a></li>\n";}
    $flag++;
    

    target="blank" use for open a link in new tab