Opened 18 years ago
Closed 18 years ago
#776 closed Bug (duplicate)
Firefox: focus problem
| Reported by: | anonymous | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | General | Version: | |
| Keywords: | SF | Cc: | liane@… |
Description (last modified by )
I have create a DIV element whice includes the FCKeditor. This DIV element is flipable. On the pageload the DIV element is hidden with the CSS attribute "display: none;". When I flip the DIV element to visible ("display: block;") I can't focus the FCKeditor to write my text. I can interact with the toolbar elements and width the right-click menu but I can't write something.
On IE6.0 I can focus everything, but not on Firefox. I hope you can solve the problem - I need this feature :D
===================================================
Source code:
===================================================
# JAVASCRIPT:
function flip(id)
{
if(document.getElementById(id).style.display == "none")
{
document.getElementById(id).style.display = "block";
}
else
{
document.getElementById(id).style.display = "none";
}
}
# HTML:
[ • <a
href="javascript:flip('answerFCK');">Answer</a> ]<br />
<div id="answerFCK" style="display: none;">
<br />
<form action="someURL" method="post" name="fanswer">
{editor}<br />
<br />
<input type="submit" value="Send" />
</form>
</div>
Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1561954&group_id=75348&atid=543653
Change History (2)
comment:1 Changed 18 years ago by
| Cc: | liane@… added |
|---|---|
| Description: | modified (diff) |
| Reporter: | changed from Martin Kou to anonymous |
comment:2 Changed 18 years ago by
| Resolution: | → duplicate |
|---|---|
| Status: | new → closed |
This is a dup of #321

already reported a few lines below:
http://sourceforge.net/tracker/index.php?func=detail&aid=1550520&group_id=75348&atid=543653
Moved from SF. Original poster: liane