I just Put the COmbo box in a DIv so I changed the code $("select.Responses").change(function(){ $(this).panret('div').attr("title",$("option:selected",$ (this)).attr ("title")).cluetip({splitTitle: '|',width:400});
}); and it worked does any one has better idea On Mar 12, 9:00 am, Pedram <pedram...@gmail.com> wrote: > Dear Folk this is the actual LINKhttp://mahdip.com/test/I made it > for this Example , it works in firefox but it doesn't work in IE > thanks > > On Mar 12, 8:29 am, Pedram <pedram...@gmail.com> wrote: > > > Thanks but I want to Remove the Plugin from my Selector , lets say I > > have COmbo box when ever you change the Option the Cluetip fires in > > so when the onChnage event is active the we set the select title > > attribute the same as the title that was selected , and then add the > > cluetip to that , but the problem is each time Im calling this tooltip > > so have a problem in IE . > > it doesn't work. > > > $("select.Responses").change(function(){ > > $(this).attr("title",$("option:selected",$(this)).attr > > ("title")).cluetip({splitTitle: '|',width:400}); > > > }); > > > please give me your Idea! > > > On Mar 11, 9:27 pm, jQuery Lover <ilovejqu...@gmail.com> wrote: > > > > Well, if you don't have any other events bound to your element, then > > > simply unbind the event. > > > > For example, if it is on hover, unbind on hover. if it is on click > > > unbind click event... > > > > ---- > > > Read jQuery HowTo Resource - http://jquery-howto.blogspot.com > > > > On Thu, Mar 12, 2009 at 4:14 AM, Pedram <pedram...@gmail.com> wrote: > > > > > Dear folk , > > > > I'm working with the CLuetip plugin > > > > I faced a problem . > > > > How can I remove the Clutip from an object > > > > > for example : > > > > > $("div").cluetip(); > > > > $("div").removeCluetip(); // I want to do this > > > > > Thanks