I know this works on all objects except drop down boxes.
doc = document.all
for (i=0;i<doc.leng th;i++)
{
doc(i).style.cu rsor = 'wait';
}
Is it possible to make a cursor into an hourglass over a drop down?
doc = document.all
for (i=0;i<doc.leng th;i++)
{
doc(i).style.cu rsor = 'wait';
}
Is it possible to make a cursor into an hourglass over a drop down?
Comment