I am making form with submit button in Joomla custom HTML and I would like to stay on the same page after I click on the submit button.

Is that possible? Thanks in advance.

link|improve this question

40% accept rate
Are you using one of the form extensions? If not, why not? – Brent Friar May 31 '11 at 0:40
feedback

2 Answers

Just leave the form action attribute out. This will post back to the same page. Have a look at this question and answer: Blank HTML form action (posting back to self)

link|improve this answer
feedback

If "stay on the page" means that the page will not reload, or anoter page will be loaded, yes, thats quite possible. I think the best way of doing this is replacing the <input type=submit> with a <button>, which calls a javascript function that evaluates the form, submits the data via ajax, and notifies the user that the form was successfully submitted.

link|improve this answer
I would like to reload page. Is this possible? – raspucin_22 May 31 '11 at 0:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.