Re: [jQuery] Re: Extracting content from a div?

2010-01-09 Thread Leonardo Balter
Email der Rezension > kann nicht den Wert 'undefined' >speichern. > > > > some junk here > > > > > So how exactly would I extract that from a string? > &

Re: [jQuery] Re: Error in IE6 and 7, but not 8 (or FF, and Chrome) ...

2010-01-09 Thread Leonardo Balter
Sometimes we really need other people to look our codes or test our products. Or we need to first "empty our cup" to have it full again. 2010/1/9 youradds > OMG you lifesaver!!! HOW DID I MISS THAT! > > Just made the change, and works perfectly in IE 6 and 7 now - thanks > so much! > > > On

Re: [jQuery] Extracting content from a div?

2010-01-09 Thread Leonardo Balter
And you can simply use .text() method. This will return you only the text inside your selected element. Do you also need tips on getting the child elements on that div? -- At, Leo Balter http://leobalter.net Blog técnico: http://blog.leobalter.net

Re: [jQuery] Re: Element Exact Width

2010-01-01 Thread Leonardo Balter
Vidas, I got stuck on what you did in the 'obj.html(obj.children().html());' Isn't it a redundancy or I'm missing something? 2010/1/1 Šime Vidas > > Better yet, make a function that you can reuse: > > function contentWidth(obj) { >var width = obj.wrapInner("").children().width(); >obj

Re: [jQuery] problem in installing jquery in debian (lenny)

2009-12-27 Thread Leonardo Balter
already tried to reclone your git rep paste? Maybe you can get better answers in jQuery Dev group. 2009/12/26 alenoosh > Hi > > I'm trying to install jquery in lenny , I have sun-java6-jre , sun- > java6-bin and sun-java6-plugin and sun-java6-jdk installed , but when > I run 'make' in shell to

Re: [jQuery] Re: js function to jQuery

2009-12-23 Thread Leonardo Balter
Maybe the asp.Net ajax is still working and changing elements when the DOM is ready in the page. I would encourage you to get rid of your asp.net ajax too. It's a nightmare of issues. 2009/12/23 Šime Vidas > Well, it actually gets even shorter... you can combine the two > selectors into one

Re: [jQuery] Problem with a search form in a loaded php file??

2009-12-23 Thread Leonardo Balter
First of all: an Id is meant to be unique, so you can start with $('#search_button') selector and test it all again. 2009/12/23 123gotoandplay > hi, > > have simple search form which works in list.php > > Now i am 'loading' list.php in #content and now the search function > doesn't work. > > w

Re: [jQuery] Problem with window focus event in Firefox 3.5/Win Vista?

2009-12-23 Thread Leonardo Balter
Try the .one( event type, callback fn ) method 2009/12/23 paul s > Hi folks, > > I'm having a problem using: > > jQuery(window).bind("focus", function(event) { alert("test"); }); > > in Firefox. > > I'd expect a single alert box when I focus on the window. However in > Firefox I get 4 alert boxe

Re: [jQuery] Re: js function to jQuery

2009-12-23 Thread Leonardo Balter
Nah, make it sexier, use parenteses (tip from the new John Resig's ebook): ( var $ = window.jQuery; $("#CollapseExpandTd").click( function() { $("#TreeviewTd").toggle(); $("#MenuBarTd").toggle(); }); ); $ will be a local variable and unicorns will come to see the magic runni

Re: [jQuery] Meta question about this newsgroup

2009-12-23 Thread Leonardo Balter
Pastebin (http://pastebin.com) as the best reedit option and http://jsbin.com as the best "as working" example option. 2009/12/22 aquaone > Providing a link to a live site or using a pastebin type site (e.g. > http://jsbin.com/) is likely your best bet. > > aquaone > > > On Tue, Dec 22, 2009 at

Re: [jQuery] How to get these two slide show to alternate?????

2009-12-23 Thread Leonardo Balter
first you forgot a "{" in the first cycle, maybe you already noticed this. Second, trying to help you: why don't you try to use for both slideshows a delay of 3000ms but a timeout of 3 secs in the first and 6 secs in the other one. This make the right magic for you? 2009/12/23 Rick Faircloth >