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?
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?
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?
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.
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.
..."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...