TinyURL alternative
October 10th, 2008
http://www.time-safe.com provides URL shortening, but also allows you to specify passwords and time ranges for the URL forwarding.
http://www.time-safe.com provides URL shortening, but also allows you to specify passwords and time ranges for the URL forwarding.
I use with with AJAX library to completely remove a DIV tag ( or whatever )
function removeTag(tag){
field = document.getElementById(tag);
field.parentNode.removeChild(field);
}
function removeAllChildren(field){
if ( field.hasChildNodes() )
{
while ( field.childNodes.length >= 1 )
{
removeAllChildren(field.firstChild);
field.removeChild(field.firstChild);
}
}
}