Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
475 views
in Plugins by
edited by
I would like to add "How to" words prior in every question. Like fiverr.com has "I will" words. In URL there should be complete question, including how to words.
Q2A version: 1.5

1 Answer

+1 vote
by

Just put this jQuery in your page using Admin->Layout.

$('input#title').val('I will ');

You could also do it with a plugin, but I don't see any advantage to that. Even if you wanted to change the text conditionally, you could still do that with ajax and jquery.

 

by
Where exactly can i insert that code?
...