Monthly Archives: May 2010

Include google-hosted jquery

If you are lazy to copy and paste the jquery file to your development folder for example when testing something simple, you can always use jquery hosted by google. To include it is very simple, you just include this script on the top and you’re done.

1
2
3
4
<script src="http://www.google.com/jsapi"></script>
<script>
   google.load("jquery", "1.3");
</script>

You are ready to use the jquery. Yahooo.. ups.. Goooooglee!!

HTML frame to cloak URL

This is HTML frame code to cloak URL. Be careful when use it on affiliate program. Some program (like clickbank) don’t allow URL cloak with this method.

1
2
3
4
5
6
7
8
<html><head>
<title>example title</title>
</head>
<frameset border=0 rows="100%,*" frameborder="no">
<frame src="http://www.example.com" frameborder="no" border=0 noresize>
<frame topmargin="0" marginwidth="0" scrolling="no" marginheight="0" frameborder="no" border="0" noresize>
</frameset>
</html>