Or this:
function roundme(number) {
return result=(Math.round(number*100)/100).toFixed(2);
}
Same thing just reduced to one line
Announcement
Collapse
No announcement yet.
Search Result
Collapse
500 results in 0.3489 seconds.
Keywords
Members
Tags
-
Maybe Ajax will do the trick.
http://www.javascriptkit.com/dhtmltu...includes.shtml
http://www.adaptivepath.com/publicat...ves/000385.php
I have not worked with it myself, but have read a lot about it.
Leave a comment:
-
Maybe this link will give you some ideas:
http://www.dynamicdrive.com/dynamicindex2/index.html
Leave a comment:
-
This is more of a Server Side question than Javascript. Try asking there.
Leave a comment:
-
-
Leave a comment:
-
-
I believe parent.location.href="..." or top.location.href=".." will work.Last edited by requestcode; Nov 18, 2005, 12:33 PM.
Leave a comment:
-
-
This works for me:
Code:<html> <head> <script type="text/javascript"> function GoTo() {window.location.href="http://www.yahoo.com"} </script> </head> <body>
Leave a comment:
-
Sounds like a formMail.cgi problem. Any form elements that you pass will show up unless you code your Server Side (formmail) program to ignore them.
Leave a comment:
-
-
You could check the location property or the title property.
if(location.href="...")
{do something}
or
if(document.title="something")
{do something}
Leave a comment:
Leave a comment: