[jQuery] what is $.param?

2007-08-31 Thread mikeyao
Why can't i find the $.param in the manual?

[jQuery] Re: how to fetch data by php page from jQuery

2007-07-14 Thread mikeyao
I make a website by this way(get data from php+mysql and insert to dom tree). But I don't konw why sometimes can list data, sometimes it is nothing, sometimes crashed the browser. Anyone may give me advice? thanks so mush ! http://www.midsunshine.com On Jul 11, 8:41 am, Xinhao Zheng [EMAIL

[jQuery] Re: Parseing XML in Internet Explorer with jQuery

2007-06-29 Thread mikeyao
see this http://groups.google.com/group/jquery-en/browse_thread/thread/f274cfee52fd0188/92e705d8cff94bd6?lnk=gstq=mikeyaornum=1hl=en#92e705d8cff94bd6 I have solved the problem. This is a IE6 bug. On Jun 25, 7:29 pm, Gordon [EMAIL PROTECTED] wrote: I am writing an application that looks up

[jQuery] Re: jqUploader

2007-06-24 Thread mikeyao
Alexandre Plennevaux: Do you implement uploading progress with php apc + jqUploader? Can you give php code? thanks. On 6月24日, 下午4时28分, Alexandre Plennevaux [EMAIL PROTECTED] wrote: hi L :) i believe jquploader makes it quite easy as many settings are derived from the html form. you can check

[jQuery] Re: manipulate xml in IE6 isn't compatible?

2007-06-18 Thread mikeyao
I have solved the problem. IE6 has a responseXML bug. So you need to create Microsoft xml object by ActiveXObject. example: $.get(test.xml,function(responseText){ var xmlDocument = new ActiveXObject(Microsoft.XMLDOM); xmlDocument.loadXML(responseText); $('control', xmlDocument).text(); });