webtrickz

Untitled

Sep 24th, 2011
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. Original code:
  2.  
  3. <script type="text/javascript">
  4.  
  5. var uri=window.location.href;
  6.  
  7. document.write("<img src='http://api.qrserver.com/v1/create-qr-code/?data="+encodeURI(uri)+"&size=150x150'/>");
  8.  
  9. </script>
  10.  
  11.  
  12.  
  13. Google code:
  14.  
  15. <script type="text/javascript">
  16.  
  17. var uri=window.location.href;
  18.  
  19. document.write("<img src='https://chart.googleapis.com/chart?chs=150x150&cht=qr&chl="+encodeURI(uri)'/>");
  20.  
  21. </script>
Advertisement
Add Comment
Please, Sign In to add comment