plandem / lwrte

Export from Google Code. Lightweight Rich Text Editor (RTE / WYSIWYG) for jQuery
https://code.google.com/p/lwrte/
0 stars 0 forks source link

An idee (<label>) #10

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
It would be nice if the editor reacts to the label tag?

Original issue reported on code.google.com by 6iinter...@gmail.com on 8 Feb 2009 at 10:31

GoogleCodeExporter commented 9 years ago
what do you mean?

Original comment by plandem on 24 Feb 2009 at 9:08

GoogleCodeExporter commented 9 years ago
When i make a formulier i use the tag label to line the inputs and textarea's 
like this:

Css:
label{ text-align: right; width: 200px; float: left;  }

Html:
<form id="formulier" method="post" name="formulier">
    <p><label for="naam">Naam<span class="verplicht">*</span>:</label><input type="text"
id="naam" name="naam" value="<?php echo $_POST['naam']; ?>" maxlength="255"></p>
    <p><label for="bericht">Bericht<span class="verplicht">*</span>:</label><textarea
id="bericht" class="wysiwyg" name="bericht"><?php echo $_POST['bericht'];
?></textarea></p>
    <p><label for="email">E-mail<span class="verplicht">*</span>:</label><input
type="text" id="email" name="email" value="<?php echo $_POST['email']; ?>"
maxlength="255"></p>
    <p><label for="submit"> </label><input type="hidden" name="submit"
value="1"><input type="submit" class="ajaxInput" onclick="" id="submit" 
name="submit"
value="Toevoegen" /></p>
</form>

Original comment by 6iinter...@gmail.com on 24 Feb 2009 at 4:47

GoogleCodeExporter commented 9 years ago
Still don't understand what do you mean! :( I apply a ID, CLASS and NAME of 
textarea
to iframe. What are you talking about?

Original comment by plandem on 5 Mar 2009 at 9:03