I think you'll have to do it in such a way that it blocks the
different elements individually and then unblock the ones that have
errors.

e.g.
$('.blockMe').blockUI({message: null});
$('.error').unblock();


On Oct 2, 3:51 pm, samh12 <ste...@bluemania.co.uk> wrote:
> Hi Nalum,
> Idon't think that answers my question.  I know I can block at page and
> element level however I want a mixture.  I want to block the page but
> leave the element that's in error alone i.e.
>
>  $(document).ready(function() {
>             $('#btnSubmit').click(function() {
>                 $.blockUI({ message: null });
>
>                 $('#form_surname').unblock(); //now unblock the
> surname field as this needs correcting
>
>                 $('.blockOverlay').attr('title','Click to
> unblock').click($.unblockUI);
>             });
>         });
>
> Thanks.

Reply via email to