CodeIgniter Forums
Not able to load $this->load->library('tiny_mce') in jquery load function - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Not able to load $this->load->library('tiny_mce') in jquery load function (/showthread.php?tid=22885)



Not able to load $this->load->library('tiny_mce') in jquery load function - El Forum - 09-23-2009

[eluser]Irshad Sheikh[/eluser]
Hello,

When I load tiny_mce library using controller function,it is ok it loads tinymce editor, but when I load this through jquery load function it is not able to load tinymce editor

my code
Quote:
$('#contentArea').load(base_path+"/moderate_interest/interest_component/"+offset,{"id":id,"interest_id":interest_id});


Any idea.

thanks in advance.


Not able to load $this->load->library('tiny_mce') in jquery load function - El Forum - 09-23-2009

[eluser]Stelian Mocanita[/eluser]
At the looks of it, the CI's URL cleaner will probably return a "This uri has disallowed characters". Use firebug to see what it returns and try to paste the generated JS link into your browser.

That should at least narrow your search.

Regards, Stelian


Not able to load $this->load->library('tiny_mce') in jquery load function - El Forum - 09-24-2009

[eluser]Irshad Sheikh[/eluser]
Hello,

I checked the generated JS link into my browser,it is showing tinymce editor.
Anything else from your side.

Thank you.