Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset=utf-8 />
  <title>Open Maps from Mobile</title>
  <meta name="viewport" content="width=device-width">  
</head>
<body>
     <a href="http://maps.apple.com/maps?q=18.551464, 73.951399"> 
       Open Maps using Lat&Long
     </a>
</body>
</html>
 
@font-color: #cc9900;
#main-content {
  color: @font-color;
  padding: 10px;
  border: 1px solid #ccc;
  min-height: 600px;
}
 
$(document).ready(function(){
  $(".non-mobile").append("<img src='"+getQRCode()+"'/>");
});
function getQRCode() {
var url=document.URL;
url=url.replace(/\//g, "%2F").replace(/:/g, "%3A");
url = "https://chart.googleapis.com/chart?cht=qr&chld=M|4&choe=UTF-8&chs=300x300&chl="+url;
return url;
}
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
deepakssnpro
0viewers