Hi all, I am very much a stranger to jQuery using it for the first time in my application. I have a DOM from which I need to access all the form submit buttons after the page loads and need to append a div element after each submit element.
<input type="submit" value="submit1"> <input type="submit" value="submit2"> <input type="submit" value="submit3"> Now I would like to add a div tag after each submit button which looks like: <input type="submit" value="submit1"> <div class="my-class"></div> ...... ..... In my js file, I have the following code: jQuery(document).ready(function) { jQuery("input[type='submit']").next().append('my div tag goes here'); } ); somehow, this doesnt seem to work. I couldnt get the divs to be appended to my submit buttons. Am i going wrong somewhere? Any help appreciated.. regards, Venkat