Hello,
I want have 2 forms on the same page. I edit a log wmd.js to show the toolbar on 2 forms, but when I press a button of the toolbar on the second form, the actions are fired on the first form text area.
How I can fix this?
Best Regards
Askbot's version of wmd editor (note that it is not the same as the "official" version) will not work in more than one copy on a single page, because it uses hardcoded element IDs to assign behavior to DOM elements. Look for any getElementById() calls in the wmd.js.
According to HTML standard it is illegal to have > 1 element on a page with the same ID.
So that needs to be fixed first - probably by allowing to sett unique id's to the parts of different wmd instances. The "id bug" can be fixed by switching to classes, but it would still be necessary to assign unique behavior to the instances, esp. in the cases when contents is to be saved on the server.
Create your Q&A site at askbot.com. Managed Askbot hosting at just $15/mo. Dedicated hosting, support contracts, consulting services.
create your Q&A siteAsked: 2012-06-06 10:18:27 -0500
Seen: 55 times
Last updated: Jun 06 '12
Copyright Askbot, 2010-2011. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.
I'm going to edit the title a bit.
Evgeny ( 2012-06-06 10:35:21 -0500 )edit