www.webdeveloper.com

Search:

Type: Posts; User: jalarie

Page 1 of 5 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    608

    Change onsubmit="validate();" to ...

    Change


    onsubmit="validate();"

    to


    onsubmit="return validate();"
  2. Your main problem: Line 329, Column 18: ID...

    Your main problem: Line 329, Column 18: ID "MAINCOLUMN" already defined.
  3. What do you have so far? It's a LOT easier to...

    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.
  4. Replies
    2
    Views
    701

    If you had added parenthesis around the...

    If you had added parenthesis around the denominator, you would have gotten the result that you had expected:


    alert(('55' - 22) / ('11' + '2'))
  5. jQuery What is it that you want?

    What is it that you want?
  6. Replies
    2
    Views
    614

    It appears that JavaScript can set any...

    It appears that JavaScript can set any characterists that it wants, but that does not guarantee that CSS is listening. Hmmm.
  7. Replies
    2
    Views
    614

    JavaScript detect CSS

    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?
  8. Give us a link to the page and maybe one of us...

    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.
  9. Replies
    3
    Views
    861

    You are correct, off course! Sometimes I type...

    You are correct, off course! Sometimes I type more quickly than I think. Sometimes I don't think at all! Sorry.
  10. "We inovates the world"? You need to work on...

    "We inovates the world"? You need to work on your grammer.
  11. Replies
    4
    Views
    1,201

    What do you wish to do with this 18-digit number?...

    What do you wish to do with this 18-digit number? Could you do something with it as a string instead?
  12. Replies
    3
    Views
    861

    Try this: ...

    Try this:


    document.forms('form_list_users').reset();
  13. Replies
    3
    Views
    745

    I don't have any smart-phone, etc. to test this...

    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"
    ...
  14. Replies
    1
    Views
    655

    Your items are spaced out because of the "width"...

    Your items are spaced out because of the "width" values.
  15. Replies
    2
    Views
    854

    If I understand correctly, would the equations...

    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...
  16. Thread: calculation

    by jalarie
    Replies
    3
    Views
    305

    <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(/,/);
    ...
  17. If you don't mind having a lot of HTML code, you...

    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
  18. According to...

    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...
  19. Replies
    1
    Views
    88

    Maybe this will help: ...

    Maybe this will help:


    NumExp=Math.floor(Math.log(What)/Math.log(10));
  20. Replies
    4
    Views
    141

    Please post what you have so far.

    Please post what you have so far.
  21. Replies
    4
    Views
    160

    What is your cost per minute and per hour?

    What is your cost per minute and per hour?
  22. Make sure that you check out any 508...

    Make sure that you check out any 508 (accesibility) laws that might apply.
  23. Replies
    4
    Views
    141

    Maybe this will help: function daysOld(dob){...

    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;...
  24. Line 16 is mistyped. The "usrename" should be...

    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...
  25. Replies
    1
    Views
    79

    At the beginning of the function, add: var...

    At the beginning of the function, add:


    var base=0, seatclass=0;

    In place of your alert:


    if (base == 0) {
    alert("no route");
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4
HTML5 Development Center



Recent Articles