[jQuery] Re: Problem with cluetip using ajax displays an empty tooltip!

2008-01-20 Thread psy*
Ah thanks for your quick answer ... can you please explain me the reason for this; I'm interested ...?! Karl Swedberg schrieb: Ah, yes. You know, the text probably just needs to be wrapped in some element to work. I bet if you just have your text wrapped in a div / div it will work

[jQuery] Re: Weird bahaviour of validation plugin in a textarea used by fckeditor

2008-01-16 Thread psy*
different logins? I don't get a javascript error, I get a validation error: Bitte gebe einen Inhalt ein (mindestens 5 Zeichen) ...which according to Google translate means: Please give a content (at least 5 characters) So what exactly is the problem? On Jan 15, 7:21 pm, psy* [EMAIL PROTECTED

[jQuery] Re: Weird bahaviour of validation plugin in a textarea used by fckeditor

2008-01-16 Thread psy*
with 2 different logins? I don't get a javascript error, I get a validation error: Bitte gebe einen Inhalt ein (mindestens 5 Zeichen) ...which according to Google translate means: Please give a content (at least 5 characters) So what exactly is the problem? On Jan 15, 7:21 pm, psy

[jQuery] Re: Weird bahaviour of validation plugin in a textarea used by fckeditor

2008-01-16 Thread psy*
person with 2 different logins? I don't get a javascript error, I get a validation error: Bitte gebe einen Inhalt ein (mindestens 5 Zeichen) ...which according to Google translate means: Please give a content (at least 5 characters) So what exactly is the problem? On Jan 15, 7:21 pm, psy

[jQuery] Re: Weird bahaviour of validation plugin in a textarea used by fckeditor

2008-01-16 Thread psy*
get a validation error: Bitte gebe einen Inhalt ein (mindestens 5 Zeichen) ...which according to Google translate means: Please give a content (at least 5 characters) So what exactly is the problem? On Jan 15, 7:21 pm, psy* [EMAIL PROTECTED] wrote: Hello, why not just try it out

[jQuery] Re: Weird bahaviour of validation plugin in a textarea used by fckeditor

2008-01-16 Thread psy*
,'') ...will remove anything within and , then you can check if the actual text is longer than 5 chars, without any code On Jan 16, 10:47 am, psy* [EMAIL PROTECTED] wrote: Ok thanks, I got it to work properly with fckeditor now (with initialization and check)! Thanks again for your nice and fast help

[jQuery] Re: Weird bahaviour of validation plugin in a textarea used by fckeditor

2008-01-15 Thread psy*
Hello, why not just try it out. For that I did a test page and the tutorial how to behave to see what I mean ... 1) insert sth into the textarea from fckeditor 2) click on submit button - the error occurs that you haven't entered at least 5 chars even though I/you have ... 3) focus the textarea

[jQuery] Re: Problems with clueTip

2008-01-07 Thread psy*
Thanks for your reply! But I just want to open it faster in internet explorer since IE doesn't rcognize the fadein effect and so shows it after the time, the tooltip would have been faded in completely, you understand?? Why can't the IE use the fadein effect? Is three any workaround??? Thanks!

[jQuery] Avoid double submit by disabling submit button causes problem in IE

2007-12-22 Thread psy*
Hello, I want to avoid double submitting, so I have the following code: $(function() { $(input[type='submit']).click(function() { $(input[type='submit']).attr('disabled', true); }); }); In FF, it works pretty nice, but in IE 6 and IE 7, the submit buttons gets

[jQuery] Problem with Cluetip and Link to delete

2007-12-22 Thread psy*
Hello, I have the following code: JS: $(document).ready(function() { $('a.help').cluetip({ cluetipClass: 'jtip', arrows: true, dropShadow: false, leftOffset: 20, fx: { open: 'fadeIn', openSpeed: '' }, local:

[jQuery] Question about the mailinglist

2007-12-22 Thread psy*
Hello, is it possible to receive only responds to questions that I asked in the mailinglist directly? thanks :)

[jQuery] Filter out innerhtml of div #id

2007-12-22 Thread psy*
Hello, I have a full html code in in a var: str = 'full html code here starting with html'; and now I want to get the innerHTML of a div with an certain id. I tried that: $(var_name).filter('div#content').get(0).html() but that doesn't work. What's the right way?? thanks!