Bonjour à tous, je ne comprends pas pourquoi je n'arrive pas à faire fonctionner tinymce avec jQuery UI Tabs.

J'utilise de maniere simple JQuery UI tabs dans une page index.php :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
	$(function() {
		$( "#tabs" ).tabs();
	});
et

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
<div id="tabs">
	<ul>
		<li><a href="page_tinymce.php">Liste des inscrits</a></li>

Dans ma page "page_tinymce.php", j'ai un code trés simple :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<script type="text/javascript" src="/js/tinymce/jscripts/tiny_mce/tiny_mce.js"></script>
tinyMCE.init({
	// General options
	mode : "textareas",
	theme : "advanced",
	plugins : "style,layer,table,advimage,advlink,emotions,preview,searchreplace,contextmenu,paste,directionality,noneditable,visualchars,nonbreaking,xhtmlxtras",
 
	// Theme options
	theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,formatselect,fontselect,fontsizeselect",
	theme_advanced_buttons2 : "bullist,numlist,|,forecolor,backcolor,hr,|,charmap,emotions,cite,|,outdent,indent,|,undo,redo,|,link,unlink,anchor,image,code,|,preview",
	theme_advanced_toolbar_location : "top",
	theme_advanced_toolbar_align : "left",
	theme_advanced_statusbar_location : "bottom",
	theme_advanced_resizing : true,
	entity_encoding : "raw" ,
	// Example content CSS (should be your site CSS)
	content_css : "design/textarea.css",
 
	// Drop lists for link/image/media/template dialogs
	/*
	template_external_list_url : "lists/template_list.js",
	external_link_list_url : "lists/link_list.js",
	external_image_list_url : "lists/image_list.js",
	media_external_list_url : "lists/media_list.js",
	*/
 
	// Replace values for the template plugin
	template_replace_values : {
		username : "Some User",
		staffid : "991234"
	}
});></script>
 
 
 
 
 <textarea rows="10" cols="50" name="content"  id="content" style="width: 100%; height: 600px">
        </textarea>
L'editeur de tiny MCE n'apparait pas sur mon textarea...
Merci pour votre aide.