I want to create a CakePHP form with no action. I want to handle all with JavaScript. How can I create a CakePHP form without an action?
In HTML I would do:
<form action="#">
I want to create a CakePHP form with no action. I want to handle
Share
I solved the problem by just add
default = falseto the form create parameters.