Hello All,
Here is little tutorial how to make ''remove the default text in ask box on clickling''
1. ADMIN - LAYOUT - Click down ''Custom HTML in <head> section of every page:''
add there:
<script>
$('input:text').click(
function(){
$(this).val('');
});
</script>
Click ''Save options''
2. in qa-widget-ask-box.php in input of ask box add:
placeholder="Something"
Done, if anyone have question just ask,
Thanks.