I went through the
WYSIWYM-documentation for a bit and found how to get the updated code on submit.
The documentation explains the following: (
this isn't the code yet!)
- Code: Select all
sUpdateSelector: ".my-submit-button",
sUpdateEvent: "click"
Browsing the 'jquery.wymeditor.js' i found the 'updateselector', which simply adds that class so you can use on your submit-button:
- Code: Select all
sUpdateSelector: ".wymupdate",
sUpdateEvent: "click",
So, on your submit button, just add the class 'wymupdate', shown in the code below, and you are good to go:
- Code: Select all
<input type="submit" class="wymupdate" />
This should make fetching date from v.3 work.
Cheers,
M.