http://www.urbandictionary.com/define.php?term=ftl
Printable View
It's a bit like NTL but it's not bankrupt.
@Jxhn, I'm not just changing the bg colour.
For anyone who cares or could do with it, I styled each one accordingly
(.normal {} , .active{} )
and then implemented the following:
Code:<script type="text/javascript">
function focusIN(what) {
if(what.className == "normal") {
what.className = "active";
}
}
function blurIN(what) {
if(what.className == "active") {
what.className = "normal";
}
}
</script>
<input type="text" name="text" value="Text Input" class="normal" onFocus="focusIN(this)" onBlur="blurIN(this)" />