Ill explain. I got a normal echo " <script src='ckeditor.js'></script>
<link rel='stylesheet' href='sample.css'>
<form action='" .$_SERVER['PHP_SELF']. "' method='get'> Title:<br> <input type='text' name='title' value='".$row['title']."'><br><p>
Content:<br> <textarea name='content' cols='80' rows='10' class='ckeditor' id='editor1'>".$row['content']."</textarea><br>
Summary:<br> <textarea cols='80' rows='10' name='summary' class='ckeditor' id='editor1'>".$row['Summary']."</textarea><br></p>
<input type='hidden' value='".$row['id']."' name='id'>
<input type='submit' value='Edit' name='change'></form>";
that file is loaded inside a div with jquery .load function.
The problem is my mainpage shows the editor but the div inside doesnt. How can i fix this?
I have attached a screenshot for an example.
anyone got any idea?