jQuery Forms Plugin: append response text?
I've been banging my head over this. Is it possible to append the responseText as an li element rather than replace it?
I have something like this that doesn't work:
- $(document.ready(function () {
- var options = {
- target: "#ul_element",
- beforeSubmit: validate,
- success: function () { $("#ul_element").append(responseText); }
Thanks!