html
nooks and crannies of html
2 2009-4-26 open link in a new window
add target="_blank" right after href.
<a href=http://www.google.com target="_blank">Feature Request/Bug Report</a>
3 2009-4-26 Cross-site JSON
For security reasons, web browsers impose the same-origin restrictions on client http request. Document below offers a way around it by utilizing <script> tag. However, it requires you to have privilege to modify the other site so that it returns the literal of javascript function call with json data structure as argument.
If you just want to embed a whole page from another site into a page on your site, use a frame with url pointing to external site.
4 2009-5-21 redirect web page
embed this in your html <head> tag:
<meta HTTP-EQUIV="refresh" CONTENT="1;URL=http://www.usc.edu/">
1 means redirect after one second.