Is there a way to add default text to the search mail input box?
I would like to add something like the following:
onfocus="if(this.value==Search current folder...) this.value='';"
onblur="if(this.value=='') this.value='Search current folder...';"
value="Search current folder..."
It could be done by modifying the RouldCube core, it maybe possible with JavaScript or a skin modification aswell.
Should be easy with a plugin. Check out jquery focus and blur event handler functions. You can bind them to the search box and presto.
That way you dont have to modify anything.