Hi,Industry standard basics. How do I add an “id” to the default domino form?. I need to get a handle on it using JQuery for form validation. so…
would become:
Hi,Industry standard basics. How do I add an “id” to the default domino form?. I need to get a handle on it using JQuery for form validation. so…
would become:
Subject: Try $$HTMLTagAttributes
Check the Designer help topic “Controlling the HTML generated for a form”.
Controlling the HTML tag attributes generated for a form
The HTML tag attributes are the optional attributes that are included in the statement of a document displayed on the Web. With Release 8, Domino adds the ability to control these attributes.
HTML tag attributes for a form are stored in a Computed for Display text field that is hidden from Web browsers, named $$HTMLTagAttributes.
Specify the value of this field inside quotation marks. For example, specifying a value of “lang=en” would produce the following statement in the resulting HTML.
Subject: No need to use an id…
You can get the correct form using jQuery with: var form = $(‘form[name=“_Company”]’);