[jQuery] Re: re[jQuery] place single word with image on the whole page

2007-10-23 Thread bjb
Yes, but the problem is that I can't put the word inside a tag (or inside two tags) as necessary for standard CSS-techniques. bernd -- View this message in context: http://www.nabble.com/replace-single-word-with-image-on-the-whole-page-tf4674239s27240.html#a13359902 Sent from the jQuery Gene

[jQuery] re[jQuery] place single word with image on the whole page

2007-10-22 Thread bjb
Hi, I'd like to replace a word in a text with an image, something like this is the logo with this is the any ideas? best regards Bernd -- View this message in context: http://www.nabble.com/replace-single-word-with-image-on-the-whole-page-tf4674239s27240.html#a13354510 Sent from the jQue

[jQuery] Re: Error in IE 5.5 / jQuery 1.1.3.1 - 'nodeName' is Null

2007-07-21 Thread bjb
I changed $('.myclass).click(function() {return false;}); to $('a.myclass).click(function() {return false;}); now it works Thanks Bernd bjb wrote: > > The error seems when assigning an event to a class: > > $('.myclass).click(function() {return false;});

[jQuery] Re: Error in IE 5.5 / jQuery 1.1.3.1 - 'nodeName' is Null

2007-07-21 Thread bjb
The error seems when assigning an event to a class: $('.myclass).click(function() {return false;}); -> error (only) in IE5.5 / jQuery 1.1.3.1 // works with IE7 etc $('#myid).click(function() {return false;}); -> works with IE5.5 / jQuery 1.1.3.1 myclass and myid in html: # s1.gif Kl

[jQuery] Error in IE 5.5 / jQuery 1.1.3.1 - 'nodeName' is Null

2007-07-20 Thread bjb
Hi, I just upgraded from 1.2 to 1.1.3.1 (compressed version) Everything works fine, but in IE 5.5 there seems to be a problem with the new version: It says: 'nodeName' is Null or no Object, line 185 best ragards Bernd -- View this message in context: http://www.nabble.com/Error-in-IE-5.5---

[jQuery] Re: ANNOUNCE: Another LightBox Option - Interface ImageBox

2007-04-26 Thread bjb
It would be fantanstic if the ImageBox Plugin could get the list of pictures which will be shown via ajax. Has anybody done this yet? Something like tweenbox, but working in safari. (btw: has anybody working tweenbox in safari?) Best regards Bernd Rey Bango-2 wrote: > > > In searching f

[jQuery] Re: outerHTML and Firefox does not work

2007-04-09 Thread bjb
thanks a lot as a jquery beginner I wonder if there is no jquery way to get the required tag? best regards Bernd -- View this message in context: http://www.nabble.com/outerHTML-and-Firefox-does-not-work-tf3549488s15494.html#a9910093 Sent from the JQuery mailing list archive at Nabble.com.

[jQuery] outerHTML and Firefox does not work

2007-04-09 Thread bjb
Hi, I've some code that works fine with IE, but not on Firefox (2.0.0.3) on Vista: html: ... ... i=0; alert($("#k img").get(i).outerHTML ); returns "undefined" in FF any ideas?