Jump to content

dnakamashi

Members
  • Posts

    7
  • Joined

  • Last visited

dnakamashi's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Why sometimes my page works fine and somtimes it doesn't work? It says that a variable is not defined. This variable is in another .js file that I import when I click on a button.
  2. I think yes, just submit the form to a function.<form onSubmit="validate(this)">
  3. Hi again,How can I access the dom of a page that I load through Ajax?I tried to use the getElementById byt it didn't work.
  4. I get it!I can add the object table this way: document.getElementById('name').appendChild(tab)
  5. I've created a table object this way: var tab = document.createElement("table")I tried to insert the tab object into a div this way: document.getElementById("divname").innerHTML = tabBut it doesn't work. Appear the following mesage in the Firefox: [object HTMLTableElement]
  6. You forgot the " at the end of the document.write function.
  7. I can instance a image this way: var img = new Image()Can I instance a table?
×
×
  • Create New...