Blog.Worm
By LouCypher
My blog has been infected
because of Priyadi

Tags: Blogging, Web
This entry was posted on Wed, 1 Feb 2006 at 14:18 and is filed under Uncategorized. You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.
Wed, 1 Feb 2006 at 17:27
Heya… I see that you write a lot of userscripts… Do you think you could make one that displays the number of characters that have been typed into a textarea box as a mouseover tooltip?
(I imagine this is probably pretty easy, but I don’t know javascript/XPath very well)
Thu, 2 Feb 2006 at 12:08
I haven’t tried to write it yet, but I use Jesse Ruderman’s character count bookmarklet for that.
Thu, 2 Feb 2006 at 12:32
if do you mean input-history then you can add
function criteria()
{
//get your input
var inputSelect = document.getElementById("inputList")
var input = inputSelect.value
//remind your input list to the history
your_input_history(input, "inputList", "input_list_history")
}
function your_input_history(string, listID, menuID)
{
var inputBox = document.getElementById(listID);
var inputPopup = document.getElementById(menuID);
var inputlength = inputPopup.childNodes.length;
for(var i=inputPopup.childNodes.length-1; i>=7; i--)
{
inputPopup.removeChild(inputPopup.childNodes.item(i));
}
inputBox.insertItemAt(0,string);
}
then add the id,
hope that will works