I have a script which sets the mouse cursor using
<object>.style. cursor = "wait,progr ess"
This causes a strange behaviour where a HTTP request is sent to the server for virtualdir\wait . For example if my site is http://myserver/vdir/page1.asp,
a request http://myserver/vdir/wait is sent to the server.
However if I only have a single cursor type specified,
<object>.style. cursor = "wait"
it works as expected and no requests are sent to the server.
Documentation states that a comma seperated list of cursor names can be specified. Any idea what causes this behavior?
<object>.style. cursor = "wait,progr ess"
This causes a strange behaviour where a HTTP request is sent to the server for virtualdir\wait . For example if my site is http://myserver/vdir/page1.asp,
a request http://myserver/vdir/wait is sent to the server.
However if I only have a single cursor type specified,
<object>.style. cursor = "wait"
it works as expected and no requests are sent to the server.
Documentation states that a comma seperated list of cursor names can be specified. Any idea what causes this behavior?
Comment