[jQuery] Re: Proof of concept: Animated data grid/table jquery plugin with sorting and pagination and somewhat lightweight

2008-09-02 Thread Alexandre Plennevaux
very nice indeed ! 1/ when going to the last page, the table height adapts to the number of rows. It would be better that the table height does not vary i think 2/ What's the maximum amount of rows do you think it is safe to work with? I suppose beyond a certain level, the table will feel

[jQuery] Re: Proof of concept: Animated data grid/table jquery plugin with sorting and pagination and somewhat lightweight

2008-09-02 Thread Mike Nichols
sweet...i implemented natural sorting in tablesorter but it never got put in so I am thrilled to see it baked into your implementation... looks good mike On Sep 1, 11:09 pm, Alexandre Plennevaux [EMAIL PROTECTED] wrote: very nice indeed ! 1/ when going to the last page, the table height

[jQuery] Re: Animate Query

2008-09-02 Thread tlob
a neat trick to set timeouts is with animate animate({opacity: 1}, 1000); it keeps the opacity to 1 but it takes 1000ms to do so. I experienced problems with setTimeout. That trick suited me well. I am a beginner, so I cant help you further, sorry. cheers tlz

[jQuery] Superfish problem when using IE7 'back' button

2008-09-02 Thread Curt
I've been working with Superfish for a little while now and I noticed some unusual behavior when I use the back button in IE7. Using the example.html in the download I set up the top level links to go to an actual html page (doesn't matter what, i.e. http://www.google.com). If I follow the first

[jQuery] Re: jQuery.forms javascript in response ignored ?

2008-09-02 Thread Alexey
Ok. I'll try to do this On 24 авг, 23:26, Mike Alsup [EMAIL PROTECTED] wrote: If it's a large amount of code then put in on pastie.org or somewhere like that.  But it is much easier to help you if you can create a simple example and host it so we can see it in action and use a debugger.

[jQuery] Re: data cache and tag attributes

2008-09-02 Thread Paul Carey
Very helpful, thanks for the response. Paul On Aug 28, 12:16 pm, Richard D. Worth [EMAIL PROTECTED] wrote: Some downsides to using expandos (arbitrary attribute key/value pairs on DOMElements): 1) possible memory leaks 2) keyname choice is limited because of built in attributes/properties

[jQuery] Re: No response with jQuery Form Plugin in Opera

2008-09-02 Thread Uznick
Works fine for me too. Now, i don't understand what's going on any more, maybe some other code messes with this. Thank you. On Sep 1, 5:05 pm, Mike Alsup [EMAIL PROTECTED] wrote: http://localhost/dev/j/malsup/form/file-upload-test.html Oops.

[jQuery] jQuery.ajax How to send an xml document as data to the server

2008-09-02 Thread JUN
in the jQuery documentation: Sends an xml document as data to the server. By setting the processData option to false, the automatic conversion of data to strings is prevented. var xmlDocument = [create xml document]; $.ajax({ url: page.php, processData: false, data: xmlDocument,

[jQuery] Re: Moving an Element

2008-09-02 Thread kalahari_kudu
I am also a newby with jQ, so I won't be able to help you with the 'name' of the cloned element - I suspect it is the same as the original. Here is what I did to 'swap' divs - maybe it will help you (probably superfluous for some people's liking - I am open for better code): var clonedSource =

[jQuery] Re: refreshing clueTip

2008-09-02 Thread Eric
Hm, too easy. Solution is the following: $(element).mouseout().mouseover();

[jQuery] Re: Plugin developement

2008-09-02 Thread mwk
Is there realy nobody out there, who can point me into the right direction? A link to a tutorial would be already great. If somebody doesn't understand the question, please tell me, i will try to explain it further.

[jQuery] Re: Proof of concept: Animated data grid/table jquery plugin with sorting and pagination and somewhat lightweight

2008-09-02 Thread besh
Awesome, I was just looking for such functionality recently. :) Thanks! -- Bohdan Ganicky On Sep 2, 2:09 am, num [EMAIL PROTECTED] wrote: My proof of concept http://www.overset.com/2008/08/30/animated-sortable-datagrid-jquery-p... I haven't yet seen html scrolling animation like this

[jQuery] Re: Proof of concept: Animated data grid/table jquery plugin with sorting and pagination and somewhat lightweight

2008-09-02 Thread Guy Fraser
Mike Nichols wrote: sweet...i implemented natural sorting in tablesorter but it never got put in so I am thrilled to see it baked into your implementation... looks good Does the natural sort work with Unicode chars (Chinese, Norwegian, etc)?

[jQuery] jqueryPngFix and links on IE6

2008-09-02 Thread Giovanni Battista Lenoci
Hi, I'm using the pngFix plugin to show some png images with trasparency. These images are part of a list of menu, and each one is inside on link tag. When the png fix is applied I can see trasparency but the linkable area is restricted to the visible part of the image. I've putted an example

[jQuery] JQuery Multiupload Error ?

2008-09-02 Thread [EMAIL PROTECTED]
Hello ! I use the Plugin ' multiupload' http://www.fyneworks.com/jquery/multiple-file-upload/ in the version 1.29. I select a file. Afterwards I remove this file with ' remove' Button. In Internet Explorer arises an error: After that remove for the file the file to the selection field one

[jQuery] Re: New Google Browser announced

2008-09-02 Thread Guy Fraser
Geoffrey wrote: The browser is being written with WebKit, the open-source engine at the core of Apple's Safari and Google's Android. The browser is also getting a new Javascript virtual machine, V8. It's said to be a better solution for complex and rich Web applications--it should yield

[jQuery] Re: Finding form tag wrapping around image

2008-09-02 Thread Mike Alsup
Ok Mike Thanks, here is the example of the code, with the issue in tact. http://www.sixfive.co.uk/jq1/ The XLS button is the key on this page - clearly there is no styling. The objective is to make the user is able to hit enter on the form, and have the 'Display Button' run the search

[jQuery] Re: JQuery Introduction

2008-09-02 Thread Guy Fraser
Sikandar123456 wrote: A very good lecture on jquery http://saqibshehzad.blogspot.com/2008/09/jquery.html John Resig has a Mini Me! :D http://www.austinpowers.com/objects/desktops/minime_1280x960.jpg Sorry, couldn't resist. I'll get my coat...

[jQuery] Re: Problem with Superfish and Cycle Plugin

2008-09-02 Thread Mike Alsup
I, too, am having this issue. I think it's not necessarily related to Superfish, as I shut that off and tried a traditional Son of Suckerfish menu and still have the same behavior. It seems we'd need to add something to the cycle code. I've tried positioning within the CSS itself to no

[jQuery] jquery validation plugin problem in textarea [validate]

2008-09-02 Thread andy prasetyo
I use jquery validation plugin from bassistance.de, but everytime i use it on textarea, it doesnt work (doesnt pass the value properly). Any suggestions?

[jQuery] chaining and functions

2008-09-02 Thread jan
Hi, another starter question: I do not understand why $('#content').empty().append(bhello/b); works, and this works $('#content').empty().append(makeContent()); function makeContent(){ return bhello/b; }; and this $('#content').empty().append( function() {

[jQuery] [validate] Help with code logic!

2008-09-02 Thread turbodurso
Hello there, I just need to be cleared up on a few points when using the validation plug-in - When i use the basic function : $(#myform).validate(); it work fine for required and email fields. But as soon as i try to customise with rules: or try combining the basic function with another one

[jQuery] Re: Repeating a function call on hover/mouseover/etc

2008-09-02 Thread Leanan
Thanks for the answer. Unfortunately it doesn't seem to want to play well with the plugin and I didn't want to have to do significant changes. The plugin I'm using is jquery.scrollable.js. Anyone know of a nice scrolling plugin that already has built in to it the ability to continue scrolling

[jQuery] Auto complete suggestion header

2008-09-02 Thread DineshRao
Hi, I have tried to added a header to my suggestion. When i freshly load the page and enter any text the suggestions are coming but the header is not coming, but when i delete the selection and enter the text again the new suggestions are coming with header. please find the code below for the

[jQuery] Jquery noob and Firefox3

2008-09-02 Thread winston.nolan
Hello, I am starting out with Jquery, after w friend showed me the amazing things you can do with it. I am currently working through the tutorials but I do not see any of the effects. I thought it was my fault but have followed this tutorial: http://docs.jquery.com/Tutorials:How_jQuery_Works to

[jQuery] need help with opacity

2008-09-02 Thread bobh
Hi all, I'm having some trouble with setting an 11% opacity for a parent container, while its children remain at 100% opacity. Here's my simplified html: div img src=photo.jpg / /div and I'm doing a simple css thing to control the opacity: $(div).css({opacity: 0.11}); So now all

[jQuery] Re: chaining and functions

2008-09-02 Thread Michael Geary
I do not understand why $('#content').empty().append(bhello/b); works, and this works $('#content').empty().append(makeContent()); function makeContent(){ return bhello/b; }; That works because it is exactly the same as this code: function

[jQuery] Re: Plugin developement

2008-09-02 Thread Balazs Endresz
If you declare the public method inside $.fn.pluginname then it will be able to access the private things too, but this way the public function won't be declared just after $().pluginname() was called. So you can't call $.fn.pluginname.doSomethingPublic() before that. But you can get around this

[jQuery] Re: Jquery noob and Firefox3

2008-09-02 Thread winston.nolan
Hi, I found the problem, isn't it always like that...you post, only to find the problem a few minutes after! LOL Apologies! It was in the script tags, haven't closed them properly! See you guys again to report back on my progress, Ciao winston.nolan wrote: Hello, I am starting out with

[jQuery] Re: jquery validation plugin problem in textarea [validate]

2008-09-02 Thread Jörn Zaefferer
Could you be more specific, eg. provide a testpage? Jörn On Tue, Sep 2, 2008 at 2:05 PM, andy prasetyo [EMAIL PROTECTED] wrote: I use jquery validation plugin from bassistance.de, but everytime i use it on textarea, it doesnt work (doesnt pass the value properly). Any suggestions?

[jQuery] Re: [validate] Help with code logic!

2008-09-02 Thread Jörn Zaefferer
There are a lot of examples in the documentation: http://docs.jquery.com/Plugins/Validation Specifically in the documentation for the validate method: http://docs.jquery.com/Plugins/Validation/validate#toptions There are also various demos, just take a look at the source:

[jQuery] Re: Question about the new jQuery website

2008-09-02 Thread Orkan
is it me or they have z-index issue in IE7 ? On Sep 1, 4:56 pm, Joel Birch [EMAIL PROTECTED] wrote: That's all correct about IE. In this case however, it seems like the reason for the if/else is for the benefit of Mac Firefox 2. In that browser, the weight of the text appears to alter

[jQuery] jCarousel not properly working in Safari browser!!!

2008-09-02 Thread Hemant
Hello Everyone, I 'm developing my web application using ASP.NET 2.0 with Ajax Extension 1.0. I have recently downloaded the jCarousel component (jquery.jcarousel.js with jquery-1.2.3.pack.js) and made use of it in my web application. The horizontal scrolling working fine in

[jQuery] Finding next/prev node

2008-09-02 Thread Finding_Zion
I need to have a way to find the next/prev node, be it a sibling, child, or text node. For example: code p (1) Some simple text span class='nextTextNode'that/span's special. (2) And find next Sibling span class='nextSibling'sib1/ spanspansib2/span (3) Finally a child node

[jQuery] Re: chaining and functions

2008-09-02 Thread Henry
On Sep 2, 1:09 pm, jan wrote: Hi, another starter question: I do not understand why $('#content').empty().append(bhello/b); works, and this works $('#content').empty().append(makeContent()); ^ makeContent() - is a function call, where -

[jQuery] Re: need help with opacity

2008-09-02 Thread Cybernoxa
div         img src=photo.jpg / /div and I'm doing a simple css thing to control theopacity: $(div).css({opacity: 0.11}); Hi Bob - sorry for my english ;) As img is a child of div it takes the opacity from it's parent, so there's nothing you can do. When you set opacity: 1 for img it

[jQuery] Re: jquery validation plugin problem in textarea [validate]

2008-09-02 Thread andy prasetyo
ok one min let me upload..it doesnt seem to pass the value if i use \n (newline) On Sep 2, 10:17 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote: Could you be more specific, eg. provide a testpage? Jörn On Tue, Sep 2, 2008 at 2:05 PM, andy prasetyo [EMAIL PROTECTED] wrote: I usejquery

[jQuery] Re: jquery validation plugin problem in textarea [validate]

2008-09-02 Thread Jörn Zaefferer
Please stick with the mailing list and fix your own code first - the page just submits, even with the form being validated and marked as valid. Jörn On Tue, Sep 2, 2008 at 5:40 PM, andy prasetyo [EMAIL PROTECTED] wrote: ok one min let me upload..it doesnt seem to pass the value if i use \n

[jQuery] Re: jquery validation plugin problem in textarea [validate]

2008-09-02 Thread andy prasetyo
Ok, Jorn here it is : http://d661480.u34.strictlywebhosting.com/register.html..really appreciate your help and guidance Thanks On Sep 2, 10:40 pm, andy prasetyo [EMAIL PROTECTED] wrote: ok one min let me upload..it doesnt seem to pass the value if i use \n (newline) On Sep 2, 10:17 pm,

[jQuery] Re: [validate] Help with code logic!

2008-09-02 Thread turbodurso
Thanks for having a look - i followed those demos those demos and been through the docs - still my form isnt validating or erroring ... The details are the following (this is all i have in the head section) - what am i missing??? script $(document).ready(function() {

[jQuery] unfefined properties (filtering jquery by class)

2008-09-02 Thread jon
My goal is to pull out all anchor tags and replace the href value with a rewritten value (based on original href). However, i am getting errors indicating that the object or property is undefined when there are no anchor tags with the given class name (which is why i used filter...) I have the

[jQuery] Re: Proof of concept: Animated data grid/table jquery plugin with sorting and pagination and somewhat lightweight

2008-09-02 Thread Jim Palmer
Alexandre, 1) Great point - I'm going to mess around with having more fixed dimensions. Nothing is fixed vertically and I want to toy around with text wrapping in an individual cell and see how that affects sizing and animation. 2) In the current iteration It seems 500 is the breaking point. The

[jQuery] Re: Plugin developement

2008-09-02 Thread Mike Alsup
i have a problem with the understanding of public methods of an plugin. Specialy how to create and link them to the plugin. For example: code ;(function($) {         $.fn.pluginname = function(options)         {                 var _options = $.extend(                 {                

[jQuery] Re: Using Validate with jqGrid

2008-09-02 Thread Steffan A. Cline
on 9/1/08 11:52 AM, Tony at [EMAIL PROTECTED] wrote: Hello, There is email checking in the last version. Sorry, I didn't know this. It was not in the forums or manual. As for the ajax you can use beforeSubmit event for this purpose Have any examples or binding an ajax validation? I have a

[jQuery] Re: Proof of concept: Animated data grid/table jquery plugin with sorting and pagination and somewhat lightweight

2008-09-02 Thread faizal iqbaal
this is awesome...when can i have it for my own implementation...:) i am dying to integrate it in my site On Tue, Sep 2, 2008 at 12:16 PM, Jim Palmer [EMAIL PROTECTED] wrote: Alexandre, 1) Great point - I'm going to mess around with having more fixed dimensions. Nothing is fixed vertically

[jQuery] Re: Proof of concept: Animated data grid/table jquery plugin with sorting and pagination and somewhat lightweight

2008-09-02 Thread Jim Palmer
Guy, It appears that the natural sort works with unicode characters - at least in FF3. This is due to the fact that it uses the browser's built in comparison operators ( and ) on strings - even unicode characters. Other sorts I've seen rely on translating blocks of strings with solely [:[alpha]:]

[jQuery] Re: jquery validation plugin problem in textarea [validate]

2008-09-02 Thread Andy
If users press enter or newline on textareas it doesnt seem work On Sep 2, 10:47 pm, andy prasetyo [EMAIL PROTECTED] wrote: Ok, Jorn here it is :http://d661480.u34.strictlywebhosting.com/register.html..really appreciate your help and guidance Thanks On Sep 2, 10:40 pm, andy

[jQuery] Re: jquery validation plugin problem in textarea [validate]

2008-09-02 Thread Jörn Zaefferer
Work? Like submitting the form when pressing enter in a textarea? How is that related to the validation? Jörn On Tue, Sep 2, 2008 at 6:44 PM, Andy [EMAIL PROTECTED] wrote: If users press enter or newline on textareas it doesnt seem work On Sep 2, 10:47 pm, andy prasetyo [EMAIL

[jQuery] Re: [validate] Help with code logic!

2008-09-02 Thread Jörn Zaefferer
You use invalid identifiers, see http://docs.jquery.com/Plugins/Validation/Reference#Fields_with_complex_names_.28brackets.2C_dots.29 That doesn't work anywhere. You've also got trailing comma errors in your code, see eg.

[jQuery] IE6 and ajax method in POST mode

2008-09-02 Thread [EMAIL PROTECTED]
Hi everybody, this is my question : i have this jQuery code : $.ajax({ type: 'POST', // Méthode post url: './Includes/chargerModeles.php', // Fichier appelé

[jQuery] Re: jquery validation plugin problem in textarea [validate]

2008-09-02 Thread Andy
I mean is it suppporting the newline (\n) character to be validated before passed through to another page? because mine doesnt seem to work On Sep 2, 11:55 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote: Work? Like submitting the form when pressing enter in a textarea? How is that related to

[jQuery] Re: Proof of concept: Animated data grid/table jquery plugin with sorting and pagination and somewhat lightweight

2008-09-02 Thread Jim Palmer
I just updated my live demo on: http://www.overset.com/2008/08/30/animated-sortable-datagrid-jquery-plugin-jtps/ .. to set the first column to the first 43 scripts in the ARABIC 0600 Unicode block. It appears that the sort works even on unicode+ascii strings in FF3 and IE7. I'll do some more

[jQuery] jquery flot - integers only on x and/or y axis

2008-09-02 Thread rolfsf
I've got this test page built using jquery flot to render a graph as price/quantity pairs are input I'm using the following jquery: $().ready(function(){ $.plot($(#graphHolder),[]); $('#curveData

[jQuery] Re: Proof of concept: Animated data grid/table jquery plugin with sorting and pagination and somewhat lightweight

2008-09-02 Thread Jim Palmer
Faizal, Just plopped the current 0.1 version of the jQuery plugin code on my http://www.overset.com/2008/08/30/animated-sortable-datagrid-jquery-plugin-jtps/post. I stress this is still very ALPHA and I'm going to be changing it a lot in the very near term. But have at it if you want to use it

[jQuery] Re: New Google Browser announced

2008-09-02 Thread Giovanni Battista Lenoci
Is out! :-) -- gianiaz.net - web solutions p.le bertacchi 66, 23100 sondrio (so) - italy +39 347 7196482

[jQuery] Re: best techniques to optimize loading of multiple libraries?

2008-09-02 Thread Michael Geary
From: Alex Weber So just to clear things up, you prefer using document.write() to insert script tags instead of appending the elements to the DOM: var finan = document.createElement('script'); finan.type = 'text/javascript'; finan.src =

[jQuery] Re: unfefined properties (filtering jquery by class)

2008-09-02 Thread Michael Geary
I think what you're looking for would be something like this: function rewriteFileHref() { $('a.changeHrefToWcm').each( function() { var $a = $(this), href = $a.attr('href'), parts = href.split('/'), library =

[jQuery] Re: jquery flot - integers only on x and/or y axis

2008-09-02 Thread faizal iqbaal
use this -- plot=$.plot($(#spectrumModalGraph), [{ data: velFFTData, color:#60AAD5}],$.extend(true, {}, spectrumChartOptions, {xaxis: { min: spectrumFFTZoomArea.x1, max: spectrumFFTZoomArea.x2 },yaxis: { min: spectrumFFTZoomArea.y1, max: spectrumFFTZoomArea.y2*1.5 }})); i am using

[jQuery] Re: Multiple AJAX calls problem

2008-09-02 Thread me-and-jQuery
Hey Brad. I went through these blog posts - articles - months ago, when I was looking for a problem of inactive elements returned by ajax call (and also found these three plugins, which I don't like so much). So if a solution is on that level and not on any special certain jquery integrated

[jQuery] jQuery test suite on new Google Chrome browser

2008-09-02 Thread Guyon Morée
Hi, With all the buzz around the new javascript engine in Chrome, I decided to run the jquery testsuite ( http://jquery.com/test/ ) on my 3 installed browsers (ff3, ie7 and chrome, on wixp sp3) == IE7: Tests completed in 49734 milliseconds. 0 tests of 1270

[jQuery] jQuery test suite on new Google Chrome browser

2008-09-02 Thread Guyon Morée
Hi, With all the buzz around the new javascript engine in Chrome, I decided to run the jquery testsuite ( http://jquery.com/test/ ) on my 3 installed browsers (ff3, ie7 and chrome, on wixp sp3) == IE7: Tests completed in 49734 milliseconds. 0 tests of 1270

[jQuery] Re: Proof of concept: Animated data grid/table jquery plugin with sorting and pagination and somewhat lightweight

2008-09-02 Thread faizal iqbaal
COOL..I will integrate and let you know...thanks a ton. On Tue, Sep 2, 2008 at 1:40 PM, Jim Palmer [EMAIL PROTECTED] wrote: Faizal, Just plopped the current 0.1 version of the jQuery plugin code on my http://www.overset.com/2008/08/30/animated-sortable-datagrid-jquery-plugin-jtps/post.

[jQuery] Re: jquery flot - integers only on x and/or y axis

2008-09-02 Thread rolfsf
Thanks Faizal I tried setting the x and y axis with the min option, but it doesn't seem to work... perhaps I've got some syntax wrong http://monkeypuzzle.net/testfiles/jquery/flot/flot-test-3.htm

[jQuery] Re: Nesting if statements not working

2008-09-02 Thread hubbs
Thanks guys, this fixed it! On Sep 1, 6:37 pm, Jason Huck [EMAIL PROTECTED] wrote: One thing I would suggest is casting the .val() as an integer before comparing it:     var dulicateCheck = parseInt($(#duplicateInput).val()); Otherwise it's doing a string comparison, which will throw off

[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-02 Thread Guyon Morée
I apologize for submitting this twice

[jQuery] Re: best techniques to optimize loading of multiple libraries?

2008-09-02 Thread Alex Weber
Thanks again Mike! I reckon I have it down to a 'T' now! :) Just one doubt (sorry i've taken so much of your time already!): When you say: Concatenate all of your scripts into a single file. Do you mean the entire jquery library as well? Is this feasible? Like, copy and paste the entire

[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-02 Thread Rey Bango
To be honest (and plz don't take it the wrong way) but it means absolutely nothing at this point as Chrome is still very beta and has only been out for 1 day. We will certainly support Chrome once it gets to a point where it's in regular use but these issues are expected in a new product

[jQuery] Re: best techniques to optimize loading of multiple libraries?

2008-09-02 Thread Michael Geary
No worries on being pedantic, Alex. If I'd been working 24 hours straight, I'd be worried I might understand a critical detail too. Yes, I do mean to have you concatenate all of jquery.js along with the plugin and your code into a single large .js file, and have your loader.js create a dynamic

[jQuery] Re: Create excel file from table data, not making new server request

2008-09-02 Thread SamW11
SamW11 wrote: Since we can get all table data easily using the client side technology only, can we export/popup new window(using javascript or ..) to display these table data without making new server request ? Glen Lipka wrote: the format of the html can be a regular old TBALE

[jQuery] Re: jquery flot - integers only on x and/or y axis

2008-09-02 Thread faizal iqbaal
//modiefd ur file copy the code and run it /**/ !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http://www.w3.org/TR/html4/loose.dtd; html head style type=text/css #graphHolder { border: none; padding: 0px; margin: 10px;

[jQuery] Re: AutoComplete

2008-09-02 Thread Ricardo Negri
try [ { First,Second } ] On 24 jul, 10:28, shapper [EMAIL PROTECTED] wrote: Please, anyone? Thank You, Miguel On Jul 22, 4:17 pm, shapper [EMAIL PROTECTED] wrote: The JSon method is always returning a simple array: [First,Second] Do I need to parse it? I tried but it does not

[jQuery] Re: Create excel file from table data

2008-09-02 Thread SamW11
Glen Lipka wrote: the format of the html can be a regular old TBALE tag. To have it point to Excel you need to change the headers. In php: ?php header(Content-type: application/vnd.ms-excel; name='excel'); header(Content-Disposition: filename=export.xls); header(Pragma: no-cache);

[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-02 Thread Matt Kruse
On Sep 2, 2:45 pm, Guyon Morée [EMAIL PROTECTED] wrote: Even though, Chrome seems to be a little bit faster than FF and quite a lot faster than IE, it has 2 failed tests: - 64: core module: text(String) (1, 3, 4) This looks like a bug in Chrome to me. It doesn't escape characters when

[jQuery] [autocomplete] every item shown regardless of letter typed

2008-09-02 Thread foxtrot
Hi! I'm using Jörn Zaefferers autocomplete, and happy day, using json as datasource is working! Sadly, I have not reached nirvana yet When I press a s for instance, the goal is of course to only show the items starting with s. But no, every item is shown! What can cause this? Thanx!

[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-02 Thread Guy Fraser
Matt Kruse wrote: This appears to be a bad assumption in the jQuery tests. The code in param() calls: for ( var j in a ) and makes the assumption that the keys will be returned in the same order they are specified. This is not an assumption that should be made, so the test should be

[jQuery] File upload(form blockUI plugins)

2008-09-02 Thread Mr_Mom
Hello, I am trying to make a file upload portal. I have the php portion working. What I am now trying to do is have a blockUI pop up while the files are being uploaded. Below are my two files. Any help or direction is greatly appreciated. I have so far been able to make the blockUI message

[jQuery] Re: every item shown regardless of letter typed

2008-09-02 Thread MorningZ
What can cause this? that would be your code... but where and when and how is unknown with what little you provide

[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-02 Thread timothytoe
That sounds suspiciously like what Safari does in some cases: http://dreaminginjavascript.wordpress.com/2008/07/06/a-challenge/ On Sep 2, 2:49 pm, Matt Kruse [EMAIL PROTECTED] wrote: On Sep 2, 2:45 pm, Guyon  Morée [EMAIL PROTECTED] wrote: Even though, Chrome seems to be a little bit faster

[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-02 Thread Michael Geary
Matt Kruse wrote: This appears to be a bad assumption in the jQuery tests. The code in param() calls: for ( var j in a ) and makes the assumption that the keys will be returned in the same order they are specified. This is not an assumption that should be made, so the test

[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-02 Thread Michael Geary
From timothytoe I'm not 100% sure, but I think you misread Matt's post. Matt seemed to be saying the same thing you are--the order of keys should not be relied upon. If you take out Matt's post, the context for my reply may be more clear... From: Guy Fraser I've never seen an ECMA

[jQuery] Close Firefox on modal hide

2008-09-02 Thread gautam
Hi All, I am using jqModal, and there are 2 buttons. 'Continue' and 'SaveAndExit'. SaveAndExit, saves the information and then closes the modal dialog and then closes the main window also. (Essentially, exit out of the app). I have seen lot of messages, saying we cannot achieve using FF. Can

[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-02 Thread timothytoe
I have a very large app that works perfectly in Chrome (with lots of jQuery and jQuery plugs), so the omens are good. One computationally intensive bit takes 14 seconds in FF3 and 7 in Chrome. Amazing. On Sep 2, 12:45 pm, Guyon Morée [EMAIL PROTECTED] wrote: Hi, With all the buzz around the

[jQuery] IE7 Checkbox + Label + .change() bug

2008-09-02 Thread SeanCurtis
I ran across this while working on a checkbox check all script. http://members.iinet.net.au/~malen/jquery_ie_checkbox_bug/ Firefox, Opera and Safari all work correctly, however in IE6 and IE7 it requires 2 clicks in order to toggle the change state. The wierd thing is that the two clicks don't

[jQuery] Re: error $ not defined

2008-09-02 Thread Michael Geary
Please show us your actual .html file. Otherwise it's anyone's guess what might be wrong. -Mike -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris Sent: Tuesday, September 02, 2008 4:40 PM To: jQuery (English) Subject: [jQuery] Re:

[jQuery] Re: JQuery with Flash

2008-09-02 Thread Jason R Seney
Yes, you can call javascript functions (or jquery functions for that matter) in flash. (And vice versa) See ExternalInterface: http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15683 On Sep 2, 8:14 pm, Gill Bates [EMAIL PROTECTED] wrote: I don't know if I could handle flash with

[jQuery] selectors

2008-09-02 Thread seo++
for this form form name=f1 method=get action=/search id=searchform input type=text name=q value=Search size=70 / input type=submit value=Search / /form why $(#searchform input)[0] is different than $(#searchform input:first) I can get values for $(#searchform

[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-02 Thread timothytoe
I'm not 100% sure, but I think you misread Matt's post. Matt seemed to be saying the same thing you are--the order of keys should not be relied upon. On Sep 2, 4:26 pm, Michael Geary [EMAIL PROTECTED] wrote: Matt Kruse wrote: This appears to be a bad assumption in the jQuery tests.

[jQuery] Re: error $ not defined

2008-09-02 Thread Chris
I found this to be the trouble I am having - however it is localized to only my development server (localhost in this case) Using firebug I have confirmed that the jquery.js script is not being found when I load the page via localhost/domain/jquerytest.htm. However all the other js files are

[jQuery] Re: selectors

2008-09-02 Thread Michael Geary
Imagine that you have an array: var a = [ 'a', 'b', 'c' ]; Now you can call array methods on the array: var t = a.join(); // 'a,b,c' But what happens if you call an array method on one of the *elements* of the array? var x = a[0].join(); That's an error, because a[0] is a *string*,