small doubt my friends....

How can we submit a form without a submit button?

Member Avatar for diafol

What do you want to use??
You can submit from any tag via the 'onclick' javascript. Even the onselect attribute will do it for dropdowns. For a form with id/name="myform":

<tag onclick="document.myform.submit();" /> 
OR
 <tag onclick="document.myform.submit();" >Click Me</tag>

where "tag" can be a link/image etc

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.