Title: Check if a form exist Post by: rezzonico on August 22, 2018, 02:57:51 AM Hi all,
in order to check if a datagrid exists I use the following working code: Code: if ($('#dg').data('datagrid')) { How can I check if a form exists ? Thanks Miche Title: Re: Check if a form exist Post by: jarry on August 22, 2018, 06:46:21 AM Try this code:
Code: if ($('#ff').length){ Title: Re: Check if a form exist Post by: rezzonico on August 22, 2018, 08:47:50 AM Thanks !
Miche |