You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I only bring this up because the guide is aimed at all levels of knowledge, and some people may otherwise be stumped...
The Get Started guide recommends putting a <script> before the . This works O.K. until the script begins relying on form HTML elements that haven't loaded yet. Might be worth putting in a $(document).ready to wait for all that stuff to load, or moving the <script> lower on the Index.html. I had to do the former to get my form to load in time before trying to stick a JS handler on it...(on a Mac running Chrome and Node 7.2.1)
The text was updated successfully, but these errors were encountered:
I only bring this up because the guide is aimed at all levels of knowledge, and some people may otherwise be stumped...
The Get Started guide recommends putting a <script> before the . This works O.K. until the script begins relying on form HTML elements that haven't loaded yet. Might be worth putting in a $(document).ready to wait for all that stuff to load, or moving the <script> lower on the Index.html. I had to do the former to get my form to load in time before trying to stick a JS handler on it...(on a Mac running Chrome and Node 7.2.1)
The text was updated successfully, but these errors were encountered: