Search results

  1. C

    AJAX and JavaScript help?

    My function calls add.jsp for it to be loaded by AJAX. The scripts inside the .jsp is not working when it loads in my <div>. Is there a way to make it work?
  2. C

    How do you implement an HTML code using JavaScript?

    I have an if-else statement and for each condition an HTML tag should be implemented like this one: if (condition) { <h1>message</h1> } else { <h3>message</h1> } How can javascript read HTML tags?
  3. C

    AJAX and JavaScript help?

    My function calls add.jsp for it to be loaded by AJAX. The scripts inside the .jsp is not working when it loads in my <div>. Is there a way to make it work?
  4. C

    HTML table alignment help?

    I have an outer table with 2 cells and in each of those cells are tables also. The first cell is longer so the table inside the second is centered on the cell. I want the second to be on the center top of the cell. I tried the align="" and stylesheets but they don't work.
  5. C

    HTML table alignment help?

    I have an outer table with 2 cells and in each of those cells are tables also. The first cell is longer so the table inside the second is centered on the cell. I want the second to be on the center top of the cell. I tried the align="" and stylesheets but they don't work.
  6. C

    HTML: How can you get the value of a text area then post it when you press the button...

    ..."post"? I am working on an application in which one can post a question and you can answer back just like Yahoo answers. I have a textarea and a button named "post" in a div layer. When i press the button, I need to get the text in the text area and then post it below without reloading the...
Back
Top