Search:
Type: Posts; User: jalarie
Search :
Search took 0.03 seconds.
Change
onsubmit="validate();"
to
onsubmit="return validate();"
Your main problem: Line 329, Column 18: ID "MAINCOLUMN" already defined.
What do you have so far? It's a LOT easier to add whatever is needed to your existing code than to write it from scratch and find that it's not what you want.
If you had added parenthesis around the denominator, you would have gotten the result that you had expected:
alert(('55' - 22) / ('11' + '2'))
What is it that you want?
It appears that JavaScript can set any characterists that it wants, but that does not guarantee that CSS is listening. Hmmm.
Is there a way for JavaScript to detect whether or not CSS is active? In some browsers, you can turn CSS off. Can JS check it?
Give us a link to the page and maybe one of us can spot the error. I expect that last error message about an unterminated item is probably the key.
You are correct, off course! Sometimes I type more quickly than I think. Sometimes I don't think at all! Sorry.
"We inovates the world"? You need to work on your grammer.
What do you wish to do with this 18-digit number? Could you do something with it as a string instead?
Try this:
document.forms('form_list_users').reset();
I don't have any smart-phone, etc. to test this on, so, start with something like this and adjust as needed:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
...
Your items are spaced out because of the "width" values.
If I understand correctly, would the equations be:
Sunday=$158+$10.99*7/7
Monday=$158+$10.99*6/7
Tuesday=$158+$10.99*5/7
Wednesday=$158+$10.99*4/7
Thursday=$158+$10.99*3/7...
<form>
<input id="data">
<input type="button" value='compute' onclick="calc()">
</form>
<script>
function calc(){
var Idata=document.forms[0].data.value;
var Items=Idata.split(/,/);
...
If you don't mind having a lot of HTML code, you can find a solution that does not use images and works on all browsers here:
http://spruce.flint.umich.edu/~jalarie/jaa_kcm.htm
According to http://www.webdesignerdepot.com/2009/05/10-best-css-practices-to-improve-your-code/, "Older browsers like to get glitchy with underscores in CSS, or don’t support them at all. For better...
Maybe this will help:
NumExp=Math.floor(Math.log(What)/Math.log(10));
Please post what you have so far.
What is your cost per minute and per hour?
Make sure that you check out any 508 (accesibility) laws that might apply.
Maybe this will help:
function daysOld(dob){
msPerDay=1000*24*60*50;
var Birth=new Date(dob)*1; // birth date in milliseconds since 1-1-1970
now = new Date()*1;
diff = now - Birth;...
Line 16 is mistyped. The "usrename" should be "username" instead.
As 007Julien pointed out, this is not a very secure way to limit access. You should be validating the password on the server...
At the beginning of the function, add:
var base=0, seatclass=0;
In place of your alert:
if (base == 0) {
alert("no route");