Hi.
I wrote a small snippet in jQuery to just put a search word into my searchbox in wordpress, then when clicked to disappear.
<script type="text/javascript">
var $j = jQuery.noConflict();
$j(function(){
$j('#s').click(function() {
$j(this).val('');
});
var search = "Sök på sajten...";
$j('#s').val(search);
});
</script>
currently when I get to the site it looks like this. S�k p� sajten...
What has to be changed?