[jQuery] Re: What happen with jQuery? Is it slow?

2009-05-23 Thread Josh Powell
Yes, I partially agree. I've been in conversation with the developer about it. Testing it this way tests the absolute speed of a method, but does not take into account the patterns that this method allows. Appending a node to the DOM 40 times is not the same as appending a string to the DOM 40

[jQuery] Re: cycle plugin with keyboard

2009-05-23 Thread runrunforest
I get it to work now, just change the selector window to document, The IE really has no idea what window is LOL. The working code $(document).keydown(function(e){ if(e.which == 37){ $('.prev').click();} else if(e.which == 39){ $('.next').click();} }); On

[jQuery] FF3 really slow on a mousemove with lots of divs (more then 5000)

2009-05-23 Thread geronimo3
I can't figure out how i can improve the speed in my dolumap in FF. All other browsers seem to do a bit well at least. It seems to crash all the time as soon as I mouseover a colored div. (Well it just starts lagging too much) I wouldn't recommend opening this when you have other FF tabsor

[jQuery] Re: FF3 really slow on a mousemove with lots of divs (more then 5000)

2009-05-23 Thread waseem sabjee
I just opened it up in FF3. working well. no crash. On Sat, May 23, 2009 at 10:49 AM, geronimo3 jeroom...@gmail.com wrote: I can't figure out how i can improve the speed in my dolumap in FF. All other browsers seem to do a bit well at least. It seems to crash all the time as soon as I

[jQuery] Re: FF3 really slow on a mousemove with lots of divs (more then 5000)

2009-05-23 Thread geronimo3
I have someone else saying it too now So I still have this problem On 23 mei, 11:01, geronimo3 jeroom...@gmail.com wrote: Hmm thanks damn then it is something with my FF then I use 3.0.10 btw On 23 mei, 10:58, waseem sabjee waseemsab...@gmail.com wrote: I just opened it up in FF3.

[jQuery] Re: Replace newline char with comma using jquery

2009-05-23 Thread Nitin Sawant
Hello Liam, Prob is solved now, I migrated the task in php, now all working fine.. Thanks a million for posting replies and helping me regards, Nitin Sawant On May 21, 8:38 pm, Liam Byrne l...@onsight.ie wrote: The code works fine here (apart from the security issue). I

[jQuery] Re: How to convert csv file to json

2009-05-23 Thread Nitin Sawant
Thanks a lot kelly, I wrote the php script and all working fine, http://nitin.tech4you.org/Stock%20Widget.html thanks again.. regards, Nitin Sawant On May 21, 8:08 pm, Kelly khall...@gmail.com wrote: Brian said that JSON uses a key:value format, but it is really just a shorthand for

[jQuery] Re: FF3 really slow on a mousemove with lots of divs (more then 5000)

2009-05-23 Thread runrunforest
it crashes me, recommend you find alternative script. 30% of browser is FF On May 23, 4:12 pm, geronimo3 jeroom...@gmail.com wrote: I have someone else saying it too now So I still have this problem On 23 mei, 11:01, geronimo3 jeroom...@gmail.com wrote: Hmm thanks damn then it is

[jQuery] When is jQuery available?

2009-05-23 Thread intrader
I am having a problem when loading jSquey from the Google CDN as follows:script src=http://ajax.googleapis.com/ajax/libs/jquery/ 1.3.2/jquery.min.js/script!-- does not work --. I have verified that the URL is correct and ir used in IE, the library is downloaded. I have used in in a site

[jQuery] menu fader with mouseover

2009-05-23 Thread Thans
I have problems using JQuery to create a menu with fade in and fade out external images, i.e. i put mouse over a menu item and image fade in on a another div. My problem starts when i mouse over faster between itens. All images appear at the same time. I would like to schedule a time to stay on

[jQuery] binding to an event in the-silky-smooth-marquee

2009-05-23 Thread Scott Grizzard
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I am trying to bind to a trigger issued by the silky smooth marquee based on jquery (http://remysharp.com/2008/09/10/the-silky-smooth-marquee/) Every time the marquee loops, I want to issue an alert. This is done by binding to the 'stop' event,

[jQuery] stuck trying to reload tab programatically.

2009-05-23 Thread tristan
Hi everyone, I'm very new to Javascript but very impressed by JQuery, but now rather stuck, I've read and read but found no solution. If anyone can point me in the right direction I would be much obliged. I have a set of tabs loading content via ajax: My main tab page Jquery: script

[jQuery] validate text question..

2009-05-23 Thread byte1918
hi! I'm new to jquery and I seem to have some problems. For example let's take this script.. $.post(insert.php, { whatever:whatever }, function(data){ $(#status).html(data).slideDown(slow); }); ..if this script is executed correctly I should see the

[jQuery] Loading / Handling Large Data for Sorting and Pagination

2009-05-23 Thread sandip_p_amd
Hello: We are using jQuery JavaScript Library v1.3.1 for paging and sorting purposes. This library is working fine when we are loading smaller data sets (1000 records) on the page. However, when data set starts getting large (3000 records), the initial page gives a script loading error and the

[jQuery] Fwd: Posting error: jQuery (English)

2009-05-23 Thread Neha Sharma
-- Forwarded message -- From: nore...@googlegroups.com Date: Sat, May 23, 2009 at 2:13 PM Subject: Posting error: jQuery (English) To: nsharma...@gmail.com Hello nsharma...@gmail.com, We're writing to let you know that the group that you tried to contact (jquery-en) either

[jQuery] getJSON problems

2009-05-23 Thread Al
Hi, I'm trying to get some data as JSON, and want to show a spinning animation while doing so. I have the following jQuery/HTML: http://dpaste.com/46873/ The URL I pass to getJSON returns some data e.g. {'data': '123456789'} and seems to be working properly and returning valid JSON. I pass a

[jQuery] Question about Tutorial: Find me: Using selectors and events

2009-05-23 Thread Mattsson
Hello, I'm very new to jQuery and trying out some of the tutorials. In this tutorial, http://docs.jquery.com/Tutorials:Getting_Started_with_jQuery there is an exercise: http://docs.jquery.com/Tutorials:Getting_Started_with_jQuery and I have a question about this snipped of code:

[jQuery] Re: Jquery Email validation

2009-05-23 Thread in...@reenie.org
One thing I don't understand about your script, is the lack of an extension in /ajax/emailcheck Are you using an url rewrite or is some other technique involved? Seems kind of silly to use a rewrite just for the mailcheck, but perhaps one rewrite applies to all /ajax/.* jsuggs wrote:

[jQuery] Re: FF3 really slow on a mousemove with lots of divs (more then 5000)

2009-05-23 Thread geronimo3
Well my browser percentage is more likely to be 70% FF, so it's goin to be a big problem. I even tried reducing the firing rate of my event but that doesn't help either On 23 mei, 14:28, runrunforest craigco...@gmail.com wrote: it crashes me, recommend you find alternative script.  30% of

[jQuery] Re: Load question

2009-05-23 Thread in...@reenie.org
In this code, triggered when when the user fills out the shipping info, this code fades the form div, displays the loader gif, loads the billing form into the form div, fades the loader and then fades in the form div. Each fadeIn, fadeOut or load function has a second parameter which

[jQuery] Re: getJSON problems

2009-05-23 Thread Donny Kurnia
Al wrote: Hi, I'm trying to get some data as JSON, and want to show a spinning animation while doing so. I have the following jQuery/HTML: http://dpaste.com/46873/ The URL I pass to getJSON returns some data e.g. {'data': '123456789'} and seems to be working properly and returning valid JSON.

[jQuery] Re: Licensing

2009-05-23 Thread doddstr13
Thanks. On May 22, 11:33 am, Rey Bango r...@reybango.com wrote: Each jQuery plugin author uses their own license. While most will use MIT or GPL to be consistent with jQuery, unless explicitly mentioned, you'll need to check-in with each author. Rey... doddstr13 wrote: Are all jquery

[jQuery] Re: Rollover Effects instead of alternate images

2009-05-23 Thread Karl Swedberg
The OP is asking about a very simple link rollover. Since it appears people aren't taking RobG's advice and looking up CSS rollovers on Google, here is a quick demonstration: http://test.learningjquery.com/css-background-image.html On May 22, 2009, at 2:41 PM, Andy Matthews wrote: I

[jQuery] Re: FF3 really slow on a mousemove with lots of divs (more then 5000)

2009-05-23 Thread alexander farkas
Hello, instead of: $(.town).live(mousemove,function(ev){ clearTimeout($timeout); $target = ev.target; $timeout = setTimeout(showstuff(), 100);}); try something like this: $('#zoom').bind('mouseover', function(e){ if(e.target.className.indexOf('town') != -1){ $target =

[jQuery] Re: Rollover Effects instead of alternate images

2009-05-23 Thread waseem sabjee
yes. however sometimes the jquery method is needed for IE6 as IE6 won't recognize a div:hover or li:hover but in this situation css only works best. On Sat, May 23, 2009 at 6:42 PM, Karl Swedberg k...@englishrules.comwrote: The OP is asking about a very simple link rollover. Since it appears

[jQuery] Re: When is jQuery available?

2009-05-23 Thread waseem sabjee
Hi There here is tip. instead of using the jquery library script from another URL you should download it and possibly put it on your FTP ( if online ) or filesystem ( if offline) that will really sped the scripts load time up secondly this is how I test for jquery script alert(this is a standard

[jQuery] Firebug and jQuery

2009-05-23 Thread kiusau
QUESTION: When the Firebug Script Debugger is enabled, and I open my documents with Firefox, my Console opens to the following block of code (see JAVASCRIPT below), my page fails to load, and an error message is produced (see ERROR MESSAGE below). If I reload the page with the Console still

[jQuery] Re: jQuery, MooTools, and Prototype - A Comparison

2009-05-23 Thread kiusau
The article that you provided is well written and revealed that jQuery and MooTools are designed with very different goals in mind. I found this article to be the most helpful. Indeed, one need not even choose between them, as they offer very different things. Roddy On May 21, 2:49 pm, Josh

[jQuery] Re: jQuery, MooTools, and Prototype - A Comparison

2009-05-23 Thread kiusau
This article was also very useful, and I thank you for introducing me to Google Trends. Surely jQuery is far more popular than either Prototype or MooTools, and rising in popularity. MooTools, though not particularly popular, appears to cater to a different audience and is holding its own. On

[jQuery] Re: jQuery, MooTools, and Prototype - A Comparison

2009-05-23 Thread kiusau
jQuery outperforms Prototype by leaps and bounds. Surely this is an important reason for jQuery's increasingly popularity over Prototype. Thanks for the great reference! Roddy On May 21, 1:02 pm, Jackson Ferreira de Andrade Mafra jacksonf...@gmail.com wrote:

[jQuery] Re: jQuery, MooTools, and Prototype - A Comparison

2009-05-23 Thread kiusau
I am not as impressed with the documentation as you are. I find the use of the English language weak in many places and often walk away with only partial understanding that only falls into place much later. This said, the organization of the jQuery website is nicely done. Roddy On May 22,

[jQuery] Re: Loading / Handling Large Data for Sorting and Pagination

2009-05-23 Thread Charlie
I'll bet there are 30 different answers for this based on how the data is being delivered, processed. and how you are using "jQuery Library"- plugins, methods, functions, event binding etc. I just set up jQGrid with several thousand rows in database and am amazed at how fast it works!

[jQuery] Re: jQuery Validation Plugin

2009-05-23 Thread Jörn Zaefferer
You need to quote the full key, eg name['name']: required. See http://docs.jquery.com/Plugins/Validation#Fields_with_complex_names_.28brackets.2C_dots.29 Jörn On Fri, May 22, 2009 at 10:15 PM, Bob O bhan...@hcinsight.com wrote: so as not to confuse.. the name attribute looks like this

[jQuery] Re: Firebug and jQuery

2009-05-23 Thread kiusau
A second error message that occurs after much run-time has passed. 2ND ERROR MESSAGE Exception... Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIChannel.contentType] nsresult: 0x80040111 (NS_ERROR_NOT_AVAILABLE) location: JS frame ::

[jQuery] Re: When is jQuery available?

2009-05-23 Thread aquaone
No, putting it locally will most likely slow down your application. The browser limits the number of simultaneous fetches per hostname. Additionally, retrieving from a centralized location used by other sites increases the probability it will be cached by the browser.

[jQuery] Re: When is jQuery available?

2009-05-23 Thread mkmanning
We've been using jQuery served by Google for almost a year, on a site that gets about 5 million pageviews a month, with no problems. Is your page using https by any chance? On May 22, 3:58 pm, intrader intra...@aol.com wrote: I am having a problem when loading jSquey from the Google CDN as

[jQuery] [ui resizable] A few issues...

2009-05-23 Thread Lideln
Hi all, I am using the jquery-ui resizable plugin, but I encountered some issues : 1) I had to add the .ui-resizable css for that plugin to work (hopefully I found a website explaining that workaround) 2) there is no scroll option like in draggable (!?) 3) the containment option does not work

[jQuery] Re: A few issues...

2009-05-23 Thread Lideln
I forgot : My example, using this pluggin, is : [code] SApplication.oContent.append('div class=window id=window_' + sPage + '\ div class=windowTitle\

[jQuery] Re: Question about Tutorial: Find me: Using selectors and events

2009-05-23 Thread mkmanning
A quick look in the jQuery source is always a good start: hover: function(fnOver, fnOut) { return this.mouseenter(fnOver).mouseleave(fnOut); } On May 22, 9:28 pm, Mattsson carol.matts...@gmail.com wrote: Hello, I'm very new to jQuery and trying out some of the

[jQuery] Re: jQuery XML

2009-05-23 Thread Danny Nolan
So, first: html = 'img src=' + ($(this).find(xmlvar).text()) + '' + ($(this).find(titletext).text()) + '\n\n'; Create a variable with the code needed. $(div).append($(html)); Then dump it to the div. Order and logic you need to figure out, but thats an example of how to dump a xml returned

[jQuery] Re: A few issues...

2009-05-23 Thread Lideln
Another thing... When using the resizable plugin, and by using it I mean resizing the window, it somehow creates bars around my window (some ui-resizable- handle). Why is it bad news ? Because when I perform a double click on the window title, it hides the contents, limiting it as the title

[jQuery] Re: A few issues...

2009-05-23 Thread Lideln
Youhou ! A last one before going to bed : I found the option 'disable/enable' and it was exactly what I was looking for (for the titled state of the window). But guess what ? I don't know how, but if you disable the resizable, the cursor won't change when moving around the window borders, BUT

[jQuery] Re: Firebug and jQuery

2009-05-23 Thread kiusau
I recently found the following fix for the failure code 0x80040111 on the internet, but at a loss about where to place it. http://bytes.com/groups/javascript/503355-how-fix-0x80040111-ns_error_not_available-error The FUNCTIONAL FIX function LoadContent(reqVar,loaderId,divId,url) {

[jQuery] jQuery Tooltip Plug-in 1.3 Update

2009-05-23 Thread kiusau
I have recently noticed that version 1.3 of the jQuery Tooltip Plug-in does not work with jQuery's version 1.3.2. Is there a patch available? Is there one on the way? Roddy

[jQuery] Re: Firebug and jQuery

2009-05-23 Thread kiusau
Finally, when I load the HTML document up to the internet and try to open it with Firefox, it behaves as it should. Roddy

[jQuery] Re: Firebug and jQuery

2009-05-23 Thread kiusau
Well, at least, until I turn on Firebug, anyway. This is very frustrating, when my sole tool for checking the validity of my webpages is Firefox. Roddy

[jQuery] Re: Read Pro JavaScript Techniques?

2009-05-23 Thread RobG
On May 23, 1:12 am, finneycanhelp lovefin...@gmail.com wrote: Have you read the book Pro JavaScript Techniques Published December 2006? No. Still good /  applicable? It is not on the recommended list at the comp.lang.javascript FAQ: URL: http://www.jibbering.com/faq/#books (book