Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
  • Register
Welcome to the Q&A for Question2Answer.

If you have questions about the platform, click here to ask and please use English.

If you just want to try Q2A, please use the demo, which also grants admin access.

Apr 29: Q2A 1.5.2

using the ask a question widget across domains

+2 votes
Has anyone ever explorered the possibility of embedding the "ask a question" widget into non q2a domains?  Might it be possible to build some type of iframe that would do this so that others could embed my question box on their site which would redirect them back to me upon asking a question?  Is this possible without connecting to the database until they arrive at my q2a site?  I don't have any experience with this but I think it is an interesting idea.
asked Jul 18, 2011 in Q2A Core by mshelton

2 Answers

–1 vote
There should be no problem embedding an ask box in other sites, and having it submit back to the Q2A ask form by changing the <FORM ACTION="..."> parameter. This will allow you to provide your users with HTML to paste into their sites.
answered Jul 18, 2011 by gidgreen
+1 vote

below code will work. change to your site url in code.

<FORM METHOD="POST" ACTION="http://answers.prothoughts.com/ask">
<textarea rows="2" cols="15" NAME="title"></textarea>
<INPUT  NAME="doask1" VALUE="Submit Question" TYPE="submit">
</FORM>

 

answered Jul 19, 2011 by ProThoughts