Why TinyMCE can't load to article1.html ?
index.html
article1.htmlCode:<head> <script type="text/javascript" src="js/tw-sack.js"></script> <script type="text/javascript"> var ajax = new sack(); var articleListObj; var activeArticle = false; var clickedArticle = false; var contentObj // Reference to article content <div> function mouseoverArticle() { if(this==clickedArticle)return; if(activeArticle && activeArticle!=this){ if(activeArticle==clickedArticle) activeArticle.className='articleClick'; else activeArticle.className=''; } this.className='articleMouseOver'; activeArticle = this; // Storing reference to this article } function showContent(){ contentObj.innerHTML = ajax.response; // ajax.response is a variable that contains the content of the external file } function showWaitMessage(){ contentObj.innerHTML = 'Finding article.....<br>Please wait'; } function getAjaxFile(fileName){ ajax.requestFile = fileName; ajax.onCompletion = showContent; ajax.onLoading = showWaitMessage; ajax.runAJAX(); } function selectArticle(){ getAjaxFile(this.id + '.html'); if(clickedArticle && clickedArticle!=this)clickedArticle.className='articleMouseOver'; this.className='articleClick'; clickedArticle = this; } function initAjaxDemo(){ articleListObj = document.getElementById('articleList'); var articles = articleListObj.getElementsByTagName('LI'); for(var no=0;no<articles.length;no++){ articles[no].onmouseover = mouseoverArticle; articles[no].onclick = selectArticle; } contentObj = document.getElementById('contentContainer'); } window.onload = initAjaxDemo; </script> <script type="text/javascript" src="tiny_mce/tiny_mce.js"></script> </script> <script type="text/javascript"> tinyMCE.init({ mode : "exact", theme : "simple", elements : "elm1" }); </script> </head> <body> <div id="mainContainer"> <div id="contentContainer"> <h2 class="openingText">Click on one of the articles to the right.</h2> <p>This will load the the content of external articles into this DIV</p> </div> <div id="articleListContainer"> <ul id="articleList" class="articleList"> <li id="article1">Textarea with TinyMCE</li> <!-- go to article1.html --> <li id="article2">Article2</li> <li id="article3">Article3</li> </ul> </div> <div class="clear"></div> </div> </body> </html>
dynamic ajax content example: http://dynamic-ajax.extermedia.com/Code:<textarea id="elm1" name="elm1" style="width:300px;height:250px"></textarea>
Please help for the solution...
.



Reply With Quote

Bookmarks