First time here? Check out the FAQ!

Revision history  [back]

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.

Askbot's version of wmd editor (note that Wmd as it is not the same as the "official" version) in askbot now 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.