views:

76

answers:

0

I have a page with CKEDITOR.... In the CKEDITOR text area I'd like qTIP to be working, or any JQUERY plugin for that matter to keep this problem simple.

I get this is a crazy hard question but would appreciate any pointers in the right direction.

I have this so far and it isn't working:

$(document).ready(function(){

    CKEDITOR.instances.stufftextareaname.on("instanceReady", function()
    {
        var $tempp = CKEDITOR.instances.meeting_notes;

        $tempp.find('p').css('background-color', 'red');
    })


});