marmz

Results 3 comments of marmz

> I do not wish to use '@' itself as a delimiter. My delimiter array would look like: ['@account.', '@contact.'] So the text after '@' would be my differentiation like...

For now the only "workaround" i found is to set: ``` $.blockUI.defaults.centerX = false; $.blockUI.defaults.centerY = false; ``` But then you must adjust top/left coords. manually ... Not a really...

Did you try to submit form AFTER block completes ("onBlock" parameter)? ``` $.blockUI({ ............ onBlock: function() { form.submit(); } }); ```