8727e458e60b7748a768711cec2d8616a4aa29d9
Guides/ReportDesign/14.0-Izenda-FORMS.md
| ... | ... | @@ -167,13 +167,13 @@ To add javascript to a form inline, you must do two things. |
| 167 | 167 | |
| 168 | 168 | First, you must place your script inside the <!--FORMSCRIPT--> tag. |
| 169 | 169 | |
| 170 | -Second, you must place a container div with the id 'launchmeplease' inside the script tag. |
|
| 170 | +Second, you must place a container div with the id 'iz-custom-js' inside the script tag. |
|
| 171 | 171 | |
| 172 | 172 | This example script generates a custom date format: |
| 173 | 173 | |
| 174 | 174 | ```html |
| 175 | 175 | <!--FORMSCRIPT--> |
| 176 | -<div id="launchmeplease"> |
|
| 176 | +<div id="iz-custom-js"> |
|
| 177 | 177 | var d = new Date(); |
| 178 | 178 | var currDay = d.getDate(); |
| 179 | 179 | var currMonth = d.getMonth() + 1; |