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

This page:  http://www.question2answer.org/qa/ask

When we finished editing the title, a related question list appears.

But in IE8, then the cursor appears in the tags box.

like this:

 

How can I fix it?

Q2A version: 1.5
by
Confirmed. That's a strange bug.
by
Thanks. I will look into this for Q2A 1.5.3.

1 Answer

+1 vote
by

This has now been fixed, and the fix will be rolled into Q2A 1.5.3. If you want to apply it now, make the following changes to qa-content/qa-ask.js:

1. In the first function qa_title_change() change:

qa_tag_hints();

... to...

qa_tag_hints(true);

2. Change the following line in function qa_tag_hints()

var parts=qa_tag_typed_parts(elem);

... to ...

var parts=skipcomplete ? null : qa_tag_typed_parts(elem);

3. And in the same function, change:

if (parts.typed && qa_tags_complete) {

... to ...

if (parts && parts.typed && qa_tags_complete) {

The final code in Q2A 1.5.3 will be a little different but it's the same idea.

by
Wow,thanks very much.
Now I can try to enable the "list similar questions when asking" function.
...