Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
386 views
in Q2A Core by

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.

 

Please log in or register to answer this question.

...