I am trying to insert a span tag after or before an input text tag. Basically what I want in html is this:
<div class="input">
<span class="counter"></span>
<input name="whatever" class="word_count" type="text" />
</div>
I resolved by turning off the div in the formhelper, and writing everything manually, except for the input text tag. I just wanted to know if there is a way to accomplish this using the formhelper.
I read about Html->tag, I tried to put that inside the formhelper but to no avail.
Any help would be appreciated.