View Single Post
  #5  
Unread 05-29-2008, 07:35 AM
pooka's Avatar
pooka pooka is offline
A Griffon
Interface Author - Click to view interfaces
 
Join Date: Dec 2004
Server: Antonia Bayle
Posts: 250
Default

Right again regarding setting the URI. This means that using javascript, we can strip color code, set our new value to be the URI and pull it back into the UI.

Code:
 
<script language="JavaScript">
<!--
var str = location.hash;
str=str.replace(/\\/g,"");
str=str.replace(/#....../g,"");
document.write(str);
}
// -->
</script>
Reply With Quote