Get project form names

Hi,

Is there a way to loop through and get all form names in the project?

Thanks

$('.nsb-form')

will return an array of all the forms.

To get the id of the first form, do this:

$('.nsb-form')[0].id

Working fine. Thanks.