Jump to content

thescientist

Moderator
  • Posts

    8,682
  • Joined

  • Last visited

Posts posted by thescientist

  1. To be fair, your post is 4 days old and in the PHP forum.

     

    I think the point Ingolme was trying to make is that for those posts made in the Suggestions forum (which is specially for making suggestions for the W3Schools.com site) the site maintainers tend to implement them, albeit while not actually making a post or comment to that affect.

  2. did you mean to connect to the mysql server first before trying to run those commands at the prompt? what happens when you try and run them in PHPMyAdmin or similar tool?

  3. I'm not really sure what you're asking for. What tracks? How do they display now? What libraries are you using? Do you have a live example somewhere?

     

    What you're presenting seems like a layout question, but you've only provided div tag and script include. It's hard to understand the issue without any context.

  4. I see that you have marked the issue as solved, but assuming you did not remove any content from your post in your edit, you should provide actual details about the issue, as "does not work" with no frame of reference (no expected vs actual, no screens of what is considered working to you / your project, and no code) gives us literally nothing to work with.

  5. @stathis

    My guess is this code was exploiting a bug in IE8 where name and ID attributes with the same value were interchangeable?

     

     

    You are looking for an element with id newPlayerName

    var nnHidden = document.getElementById('newPlayerName');

    but all you have is an element with that value for the name attribute.

    <INPUT type=hidden name="newPlayerName">

    Try adding an id to that element with the same value

    <INPUT type=hidden name="newPlayerName" id="newPlayerName">
×
×
  • Create New...