Thursday, December 13, 2012

Submit Form with link

As my title says today’s topic also ‘simple & useful’,
Most of user Interface engineers prefer links instead of buttons, which is easy to style. So will use…

Submit with Button
 <input type="submit" value="Submit"/>  

Submit with Link
 <a href="javascript:void(0)" onclick="$(this).closest('form')[0].submit();">Submit</a>