Re: [jQuery] The use of !important

2010-01-01 Thread Olaf Gleba
a a.s.o. Well-organized CSS does not require to overwrite (and breaking) the inheritance chain. bye Olaf -- creatics : Inh. Olaf Gleba o...@creatics.de : http://creatics.de PGP-Key http://creatics.de/keys/

[jQuery] Re: Safari and .remove()

2009-02-13 Thread Olaf Gleba
esn't work you could try disabling the link. $(linkHere).attr('disable',true). Karl Rudd On Fri, Feb 13, 2009 at 7:22 PM, Olaf Gleba wrote: Hi. On a click event i DOM insert (append) a LINK tag into the head. var s = document.createElement('link'); s.href='/gt

[jQuery] Safari and .remove()

2009-02-13 Thread Olaf Gleba
he target link tag (gives me 1 when i check length), but doesn't remove it on the fly. Is that a known issue on safari? Any hints to achive the desired behaviour? greets Olaf -- Olaf Gleba : creatics media.systems Tel. +49 (0)221 170 67 224 : Fax. +49 (0)221 170 67 225 o...@creatics.de :

[jQuery] Re: Accessing object tag by id

2009-02-06 Thread Olaf Gleba
jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 1:11 PM, Olaf Gleba wrote: Sorry, but anyone has a clue ? Am 05.02.2009 um 11:43 schrieb Olaf Gleba: Couldn't find any appropriate answer: How do i point to a object tag by ID ? Ex

[jQuery] Re: Accessing object tag by id

2009-02-06 Thread Olaf Gleba
Sorry, but anyone has a clue ? Am 05.02.2009 um 11:43 schrieb Olaf Gleba: Couldn't find any appropriate answer: How do i point to a object tag by ID ? Example: $('#flashsitemap').event(function() { ... }); This assumed syntax does not work obviously gruss Olaf

[jQuery] Accessing object tag by id

2009-02-05 Thread Olaf Gleba
Hi. Couldn't find any appropriate answer: How do i point to a object tag by ID ? Example: $('#flashsitemap').event(function() { ... }); This assumed syntax does not work obviously. But. If i have an embed tag within the object tag everything's fine. http://www.creatics.de PGP-Key h

[jQuery] Re: Question to parent() versa DOM parentNode

2008-10-17 Thread Olaf Gleba
Function returns the attribute (for), i expected the same for the jquery syntax i wrote. But i missed that my jquery syntax only contains the object itself at this point. Thanks for your asking. greets Olaf -- Olaf Gleba : creatics media.systems Tel. +49 (0)221 170 67 224 : Fax. +49 (0)221 170

[jQuery] Question to parent() versa DOM parentNode

2008-10-15 Thread Olaf Gleba
d do the same thing. Or do i miss something here? Thanks in advance. bye Olaf -- Olaf Gleba : creatics media.systems Tel. +49 (0)221 170 67 224 : Fax. +49 (0)221 170 67 225 [EMAIL PROTECTED] : http://www.creatics.de PGP-Key http://www.creatics.de/keys/

[jQuery] Execute a function within a jquery method

2008-07-08 Thread Olaf Gleba
Hi. Probably a lack of understanding jquery/javascript. Is it possible to append (or something simular) a excecutable function call within a jquery event call? I want to execute the function AC_FL_RunContent(params) of the on top of page loaded AC_RunActiveContent.js to embbed Flash files d

[jQuery] Re: Order of presence of DOM Elements

2008-04-06 Thread Olaf Gleba
ou put the code that depends on mySettings. Thanks a lot for your hint. gruss Olaf -- Olaf Gleba : creatics media.systems tel. +49 (0)212 38 32 94 30 : fax. +49 (0)212 38 32 94 31 [EMAIL PROTECTED] : http://www.creatics.de http://www.creatics.de/keys/

[jQuery] Order of presence of DOM Elements

2008-04-05 Thread Olaf Gleba
ementsByTagName('body')[0].appendChild(s); ... jQuery('#simple_page_content').markItUp(mySettings); }); }); /* Example ends here */ -- Olaf Gleba : creatics media.systems tel. +49 (0)212 38 32 94 30 : fax. +49 (0)212 38 32 94 31 [EMAIL PROTECTED] : http://www.creatics.de http://www.creatics.de/keys/

[jQuery] Re: [ANNOUNCE] markItUp! 1.0 (former jTagEditor) is finally released!

2008-04-03 Thread Olaf Gleba
Hi Jay. Am 03.04.2008 um 11:58 schrieb Jay Salvat: [...] I hope my explainations and my english will be clear enough to help you. Many thanks for your detail description! I will work on these solutions and will post the result here. Again, many thanks. bye Olaf -- Olaf Gleba

[jQuery] Re: [ANNOUNCE] markItUp! 1.0 (former jTagEditor) is finally released!

2008-04-02 Thread Olaf Gleba
n the textarea ID selection. Am i missing something? Or is there a way to prevent the ID switch? *) markItUp rips off the id from the textarea and uses it on the surrounding container. greets Olaf -- Olaf Gleba : creatics media.systems tel. +49 (0)212 38 32 94 30 : fax. +49 (0)212 38 32

[jQuery] Re: Selectors

2007-11-05 Thread Olaf Gleba
Am 05.11.2007 um 14:02 schrieb boermans: Perhaps this: $('img',e).attr({src: "path/to/image"}); Brilliant. And of course you are right - href is likewise src an attribute, not a tag ;) typo... thx a lot Olaf

[jQuery] Selectors

2007-11-05 Thread Olaf Gleba
src: "path/to/image"}); But i think there must be a shorter and more elegant way to do this like for example: $(e + :'only-child').attr({src: "path/to/image"}); but this unfortunately doesn't work. Any hint is appreciated greets Olaf -- Olaf Gleba : creatics

[jQuery] Re: Defining and using of JSON defaults/options

2007-11-01 Thread Olaf Gleba
Little Correction for the second example (needless '()' in chain). Am 01.11.2007 um 09:22 schrieb Olaf Gleba: Example (doesn't works): var uToggle = { animationType: 'fadeIn', speed: 'fast' ... xxx: function(e) {

[jQuery] Defining and using of JSON defaults/options

2007-11-01 Thread Olaf Gleba
Hi. I know, strange topic description. But i didn't know how to describe it a better way. Example (works): var uToggle = { speed: 'fast' ... xxx: function(e) { $(e).parent().next().fadeIn(uToggle.speed); } }; Example (doesn't works): var uT

[jQuery] Re: Why does my ajax call fail ? (when it is called the second time) ??

2007-04-23 Thread Olaf Gleba
Am 24.04.2007 um 07:49 schrieb naveman: that is my code, my comments show my problem. i tried not onle jquery.html() but also any other possibilty to update the innerHTML. so i am really wierd about that, since it has no error. Since the call is excecuted correctly the first time, it may has

[jQuery] Re: Defining of a function

2007-04-12 Thread Olaf Gleba
Am 13.04.2007 um 00:13 schrieb Olaf Gleba: I wondered if there's maybe some speed issue on that topic. But as far as i read about it now, its only a question at which point the function object is available. good resource either: http://developer.mozilla.org/en

[jQuery] Re: Defining of a function

2007-04-12 Thread Olaf Gleba
available until they have been evaluated. [...] Many thx to all responders! I wondered if there's maybe some speed issue on that topic. But as far as i read about it now, its only a question at which point the function object is available. Again, thx for figure this out. -- Olaf Gleba

[jQuery] Defining of a function

2007-04-12 Thread Olaf Gleba
Hi, Maybe i should take a break,- i don't get the point what differences it makes defining a function as a named or a anonymous function. function xxx () { ... } var xxx = function() { ... } What are the advantages and disadvantages of both of them? Thx in advance. -- Olaf Gleba

[jQuery] Re: Best Method to (re)bind event handlers

2007-04-11 Thread Olaf Gleba
y the lambda approach. Seems to fit my needs. greets Olaf -- Olaf Gleba : creatics media.systems tel. +49 (0)212 38 32 94 30 : fax. +49 (0)212 38 32 94 31 [EMAIL PROTECTED] : http://www.creatics.de http://www.creatics.de/keys/ogleba.asc

[jQuery] Best Method to (re)bind event handlers

2007-04-10 Thread Olaf Gleba
Hi, the last two days i argue about how to handle (re)binding event handlers in a most elegant and un-redundant way when i work with asynchron injected files. I worked with prototype/Behaviour for the last couple of month, so i need a good approach to refactor this within jquery. So fa