Hi, further to a previous question, I have this code:
<p class="required">
{err for="msg"}
<!--{{label {t _inquiry_msg}:}}-->
{textarea onblur="if(this.value=='') this.value='Skriv her';" onfocus="if(this.value=='Skriv her') this.value='';"}
{/err}
</p>
And I want the output to be
<textarea onblur="if(this.value=='') this.value='Skriv her';" onfocus="if(this.value=='Skriv her') this.value='';">Write here!</textarea>
I tried {/textarea}
but it didn't work in my template file.
Also, using html <>
tags doesn't work, it breaks the page.
http://euroworker.no/Konftel-300-IP.268
Is it possible to make this in smarty/php?
Thanks :)