[jQuery] bug: error of setRequestHeader in IE

2009-06-01 Thread mouqx xu
hi all: I come across a bug: ttt $.ajax({ type: 'POST', url: './', beforeSend: function(xhr){ xhr.setRequestHeader('Content-type','application/x-www-form-urlencoded;charset=utf-8'); }, data: { a: 123 } }); the code above in IE will results in the f

[jQuery] Re: will two JQuery libs conflicts?

2009-04-01 Thread Xu
file, there *might not* be a problem. > > On Tue, Mar 31, 2009 at 2:16 PM, Xu wrote: > > > Let say I have one web page that contains html/js snippets from > > another web site. If we both useJQuery. > > ThetwoJQuerylibsmight be same version or might be different > > v

[jQuery] will two JQuery libs conflicts?

2009-03-31 Thread Xu
Let say I have one web page that contains html/js snippets from another web site. If we both use JQuery. The two JQuery libs might be same version or might be different version. Will it cause conflicts? If so, how to avoid it? Will jQuery.noConflict () help here?

[jQuery] puzzles with "siblings"

2008-09-27 Thread mouqx xu
the following is the example taked from "http://docs.jquery.com/Traversing/siblings#expr"; The third li in the first ul does not colored with red in my FF3.0.3 and IE6.0 I supposed this is a bug. by the way, the style in IE6.0 is ugly http://www.w3.org/TR/html4/loose.dtd";> http://code.jquer

[jQuery] may be a bug

2008-05-18 Thread mouqx xu
Sorry for my poor English. I come across with a odd problem. Here is a html file piece: something some other html tags and content and I attach a click event handler to the anchor element, the js code is like this: $('#here').click( function(){ alert('here') } ); Now I want to clone the an

[jQuery] ajax timeout problem

2007-09-27 Thread mouqx xu
hi all I've come with a strange problem with ajax timeout. The success function and timeout function both seems to be executed. This case does happen for about every 100, 000 asynchronous request. I've read the code, the onreadystatechange function is not attached with xml, but executes

[jQuery] Re: Announce: jQuery UI 1.0 Released

2007-09-17 Thread mouqx xu
the slider demo does not work in opera 9.23 On 9/17/07, John Resig <[EMAIL PROTECTED]> wrote: > > Hi Everyone - > > We just pushed the brand-new jQuery UI 1.0 out the door. > > The full release notes: > http://jquery.com/blog/2007/09/17/jquery-ui-interactions-and-widgets/ > > The jQuery UI site:

[jQuery] interface problem with drag & drop in IE6

2007-09-02 Thread mouqx xu
I'm using interface1.2 and jQuery1.4. the problem is that cloned element is not draggable in IE6, but works fine in firefox. I defined a onDrop function in Droppable. In the onDrop function I clone the draggable DOMElement, and append to the droppable DOMElement. Then this cloned element is not dr

[jQuery] Re: opacity in IE6.0 not works with jquery-1.1.3

2007-07-04 Thread mouqx xu
).css({filter:"alpha(opacity=50)"}); //Only in browser <= IE6 or better $("").fadeTo("fast", 0.5, function(){ alert("Animation Done."); }); //cross-platform opacity mouqx xu escribió: > > following is a simple, the opa

[jQuery] opacity in IE6.0 not works with jquery-1.1.3

2007-07-04 Thread mouqx xu
following is a simple, the opacity does not works in IE6.0. Is this a bug, or should I use other expressions? function test(){ $("
").css({ position: "absolute", top: 0, left: 0, opacity: 0.5, width: 100, height: 100,