[jQuery] Re: Problem with XML :contains('texthere') Selector on IE

2007-09-16 Thread Guapo
i have the same problem , anyone can give a solution? i think maybe it's a bug. On Aug 30, 11:21 am, wrecks <[EMAIL PROTECTED]> wrote: > Hi, > xml: > > > 1 > New Journey > > >

[jQuery] Re: question about attr()

2007-08-16 Thread Guapo
i don't use the vertical-align property, cuz i saw this webpage(http:// www.westciv.com/style_master/academy/browser_support/text.html), it seems that this property is not supported by lots of browsers. On Aug 17, 9:07 am, Klaus Hartl <[EMAIL PROTECTED]> wrote: > Guapo wrote: >

[jQuery] question about attr()

2007-08-16 Thread Guapo
i want to make all tds have a top vertical align, so i write the following code: $("td").attr("valign","top"); but it failed. and i found if i change the letter a in "valign" to uppercase, it works well. code as follows: $("td").attr("vAlign","top"); anyone can explain it? test on window xp sp

[jQuery] question about selectors

2007-08-15 Thread Guapo
there are three 3*3 tables. how to select the first cell in every row in the first two talbe? i tried $("table:lt(2) tr td:first"), but failed? who can explain it? great thanks. ==

[jQuery] Announce: jQuery copy plugin

2007-07-30 Thread Guapo
we all know that in ie we can easily copy text to clipboard, but it is now so easy in fx. this plugin use a swf file to achieve this purpose. the swf file's default location is same to the plugin, if you move it to another location, change it in the plugin source code. more info:http://yangshuai.

[jQuery] question about import a js file into a webpage

2007-07-29 Thread Guapo
this question is not related to jQuery. but it confused me for a long time. i found some websites use the following syntax to import a js file or a css file into a webpage, who can explain what does the parameter after the "?" ? thanks. ---

[jQuery] book learning jquery appendix C,closure question

2007-07-13 Thread Guapo
the following text if copy from the book,I was confused with the variable globVar in the innerFun2,is it a clerical error or the variable in the statement "var globVar = outerFun();"? thank you all! Interactions between Closures When more than one inner functio

[jQuery] does the jQuery team plan to update the doc one the jQuery site?

2007-07-05 Thread Guapo
i mean update the doc to 1.1.3.1. cuz there is no place to reference the new feature in jQuery1.1.3. So... Thanks!

[jQuery] a question about the easing types in interface plugin

2007-07-01 Thread Guapo
i checked the demo page on the interface website. but i donno what the easing types really mean. on the demo page, i selected an easing type and click the "animate" link. the top emement just move left to right or right to left. I can't see any difference between them. who can explain it to me, g

[jQuery] Re: ANNOUCE: slideView plugin released

2007-06-24 Thread Guapo
i have the same problem in ff2.0.0.4 and ie7. On Jun 21, 8:35 pm, "Fred Janon" <[EMAIL PROTECTED]> wrote: > Very nice! > > A couple of things: > > If I click again on the index for currently displayed image, the image > moves a bit (in FF1.5), maybe you could check if the image is already > the o

[jQuery] Re: question about a javascript syntax

2007-05-18 Thread Guapo
Jack,thank u for your reply! Eric,your explaination is great! very helpful to me! Thank u again! God bless you!

[jQuery] a problem with $.each() function

2007-05-12 Thread Guapo
when i write $(document).ready(function(){ $.each(document,function(k,v){ document.writeln(k+""+v+"); }); }); it works ,but when i change the document to window,as follows $(document).ready(function(){ $.each(window,function(k,v){ documen