Welcome,
Guest
|
|
I want to create a form when the user clicks on an event. I tried giving the form and it does show up.
However, when I do a getElementById, I can't get it.. While debugging further, I noticed that there are 2 forms in the document. How do I work with the form I want??? |
Please Log in to join the conversation. Team Web2Cal. |
|
I had a similar problem.
It appears that calendar creates a seperate instance within the preview element. I solved it by prefixing my container ID. Example: <div id="container"> </div> To access the element, i used jquery("#container myformelement") Hope this helps! |
Please Log in to join the conversation. Team Web2Cal. |