Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
1.6k views
in Q2A Core by
The user only can tip the enter-button (on the tastatur) to see the full ask-page. Is it possible to insert a button next to the ask-box?
by
moved by
+1
good question, cause i'm sure some users dont know that they should press ENTER to ask.
asked Feb 5, 2012 in Q2A Core by Submit + ENTER

1 Answer

0 votes
by
selected by
 
Best answer
$(function(){
box = $('.qa-ask-box .qa-form-tall-data').html();
box += '<input type=submit>'

$('.qa-ask-box .qa-form-tall-data').html(box);
});

in qa-page.js or

<input type=submit>

in line 95 of qa-widget-ask-box.php
...