blob: 56234b62baf481d931b7a2b437dcaa3bfcf00f27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
//==============================================================================
// 333networks & subs
// Written by Darkelarious.
//
// This script belongs to 333networks. See
// 333networks.com for license and copyright.
//
//==============================================================================
// search box
{
var qbox = document.getElementById('q');
qbox.onclick = function ()
{
if ( this.value == 'filter...' )
{
this.value = '';
this.style.fontStyle = 'normal'
}
};
qbox.onblur = function ()
{
if ( this.value.length < 1 )
{
this.value = 'filter...';
this.style.fontStyle = 'italic';
}
};
}
|