User Profile
Collapse
-
to highlight your selections you can use an image with abolute positioning, zindex higher then the image map and an alpha filter... to place them just use your mouse coords. to remember how many you have placed use an array and fill it as you make selections, once filled disallow more selections... -
Hi srinpraveen, I'm afraid I wont satisfy your question, but I may point you in the right direction.
The problem with client-side scripts/languages like JavaScript is that you can perform things using it on the web page only while the user is on that page and you cant save anything once the user leaves the page or closes the browser. So if a user keeps refreshing one of the frames on your website you can count the number of times...Leave a comment:
-
Why not do something like that, and it works in firefox :)
<script type="text/javascript">
document.forms['order'].onclick = DoMath;
var total;
function DoMath(){
total = 0;
for(i = 0; i < document.forms[0].length; i++)
if(document.for ms[0][i].type == 'radio')
if(document.for ms[0][i].checked){
total += parseInt(docume nt.forms[0][i].value);
}
document.forms[0]['total'].value...Leave a comment:
-
Why not do something like that, and it works in firefox :)
<script type="text/javascript">
document.forms['order'].onclick = DoMath;
var total;
function DoMath(){
total = 0;
for(i = 0; i < document.forms[0].length; i++)
if(document.for ms[0][i].type == 'radio')
if(document.for ms[0][i].checked){
total += parseInt(docume nt.forms[0][i].value);
...Leave a comment:
-
Here is the page, I keep testing so it may change sponteneously :)
http://69.124.68.181:4 44/menutest.aspLeave a comment:
-
Thank you AricC, but this I have tryed before, the document style setting.
More then that, the only mouse event that fires during the whole thing is onmousemove.
What I think I need is a way to either replace the "progress" cursor, since it shows up regardless of anything. If I change it to arrow, the change will still be going on, but I wont see it...Leave a comment:
-
Cursor problem
Hi guys,
I have a problem with the cursor, in particular I'd like to change it at a certain time.
I have a simple html page where I move a div depending on the mouse movement. I get mouse x coords by window.event.cl ientX and set the div.style.left value. Everything works perfectly, but on some slower computers it seems to be too much and the motion is a bit choppy, which I dont mind. What I do mind is while its "thinking"...
No activity results to display
Show More
Leave a comment: