Great peice of software, the code it outputs is spot on.
I have a couple of issues I was hoping to get some help on...
1) When I click the return button for the first time while in the editor, the editor goes blank, when i click it again it returns - i really need to stop this from happening though, anyone with any ideas whats going wrong??
2) Sometimes the data submits to the database and other times it doesn't I was wondering if any else has had this problem??
My code is:
- Code: Select all
<link rel="stylesheet" type="text/css" media="screen" href="wymeditor/skins/default/screen.css" />
<script type="text/javascript" src="jquery/jquery.js"></script>
<script type="text/javascript" src="wymeditor/jquery.wymeditor.pack.js"></script>
<script type="text/javascript">
jQuery(function() {
jQuery('.wymeditor').wymeditor({
html: '<?php echo $content[text]; ?>',
stylesheet: 'style.css'
});
});
</script>
<textarea class="wymeditor" name="text"></textarea>
I'm using version 0.4 if that has any relevance to my problems?