Hi all
I am created one web resource that contain url . when I open that web resource in mobile and click on url link then it not open that website.
when same thing i did in web then it redirect.how to open url link in mobile.
my web resource contain below code
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="text/javascript" src="../ClientGlobalContext.js.aspx"></script>
<link rel="stylesheet" href="maxcdn.bootstrapcdn.com/.../bootstrap.min.css">
<script src="ajax.googleapis.com/.../jquery.min.js"></script>
<script src="maxcdn.bootstrapcdn.com/.../bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<table class="table">
<tr> <td><a href="http://www.google.com/" target="_blank">google web site</a> </td> </tr>
<tr><td><a href="maps.google.com;daddr=45.424807,-75.699234">maps.google.com</a> </td> </tr>
<tr>
<td><a href="www.google.com/.../dir;origin=760+West+Genesee+Street+Syracuse+NY+13204&destination=314+Avery+Avenue+Syracuse+NY+13204" target="_blank">www.google.com</a></td>
</tr>
</table>
</div>
</body>
</html>
Thanks