I have a problem with a textarea and the focus in IE. I have a click handler on the textarea to add a'n value. This works perfect in Firefox and Chrome, but in IE it seems to work, but then the focus goes to the left top. How can i fix this.
This is my code to edit the textarea:
$(".js-feedback").click(function(){
var v = $(this).val();
$(this).val(v + ((v == '') ? '' : "\n\n") + "Periode 1: ");
return false;
});
Regards, Michel