Title: Form submit and lost focus Post by: romach on March 02, 2016, 01:34:19 AM I am using .form('submit') to sent data to server in background by timer. Current textbox input loses focus on .form('submit') when it is called by timer. Some investigation leads to $(target).find('.textbox-text:focus').blur(); row in jquery.form.js. Can I change this behavior without disable this row?
Title: Re: Form submit and lost focus Post by: stworthy on March 02, 2016, 08:24:09 AM Try this code instead.
Code: $(target).find('.textbox-text:focus').blur().focus(); |