[jQuery] Jquery UI Blind + javascript fckeditor not working in ie8 but works in other browsers...help
Hello,
im fairly new to Jquery and I am learning alot.
I right now am trying to get FCKEditor via javascript inside my jquery
div.
Basically what i have going on is the tabs ui, and inside one of the
tabs is the accordian ui and at the bottom of the accordian ui i have
a
Link that you click to show the div that is holding the fckeditor text
area.
When i click this link, ONLY in IE at least 8, it does the blind
effect
i have, then you see it then it goes white.
I have tried to alter my css for that div to a set width and height
along with position and display.
I cannot figure this out< I would really like to use fck but right now
I
dont think IE supports javascript inside a jquery altered element. :S
code:
<script type="text/javascript">
$(document).ready(function(){
$("#pro_wall_post").hide();
$("#showpost").click(function () {
$("#pro_wall_post").show("blind", { direction: "vertical" },
600);
var oFCKeditor = new FCKeditor( 'postarea' ) ;
oFCKeditor.BasePath = "/java/fckeditor/" ;
oFCKeditor.ReplaceTextarea();
});
});
</script>
<a href="javascript:void(0);" id="showpost">Click Here to Post on
<TMPL_VAR NAME="FIRSTNAME">'s Wall</a>
<div id="pro_wall_post" class="ui-effects-transfer">
<form type="post" action="">
Subject: <input id="pro_wall_post2" type="textfield"
size="50"></input><br/>
<textarea id="postarea" name="postarea" cols="107"
rows="2">OMGSH</textarea>
<input id="pro_wall_post_submit" type="submit" value="Post"
name="submit">
</form>
</div>
Thanks for any helpers out there.
-Scott