[jQuery] Re: New Google Browser announced

2008-09-03 Thread Diego A.
I love it! No non-sense web browsing. I'll still keep firefox for development of course, but I'll definitelly recommend it for general use. 2008/9/2 Giovanni Battista Lenoci [EMAIL PROTECTED] Is out! :-) -- gianiaz.net - web solutions p.le bertacchi 66, 23100 sondrio (so) - italy +39 347

[jQuery] Select nodes with namespaced attribute

2008-09-03 Thread Luke Van In
I have a similar question to the one I posted here before, except this time I have no workaround. I have an xml document as follows: node name at:datasource=xyzJohn/name nameJane/name /node I need to select all nodes that have the (at:datasource) attribute. The CSS3 selector is

[jQuery] Context menus in Opera?

2008-09-03 Thread strangevoices
Hi, Does anyone know of a context menu or right-click override (jquery or otherwise) that works in Opera? I've found that the contextmenu plugin (http://www.trendskitchens.co.nz/jquery/contextmenu/) works great in IE and Firefox (though has problems being assigned to hyperlinks), but none appear

[jQuery] jquery in rails/rjs files

2008-09-03 Thread Jochen Kaechelin
Is it possible to use jquery in rails rjs files? I have a lot of files like: page[:item].replace_html render :partial = foo page.call 'update_basket' . . . I just looked at jquery and I would like to replace all my prototype code. But when I do not include prototype page.call does not work

[jQuery] a couple jGrowl tweaks

2008-09-03 Thread Josh Rosenthal
Hey Folks, So... faced with the challenge of how to elegantly display query results on top of a google map (queries from assorted data services, such as geonames, etc), I settled on jGrowl. The look was right, the controls were right... just a few things I needed to tweak. I figured I'd post the

[jQuery] Jumpy, unpredictable hover() in Firefox

2008-09-03 Thread dazonic
Hi, I've got some hover effects in my menu that go a bit crazy, only in Firefox. It works fine in Safari (and IE, I'm fairly sure). //=== // I slimmed this code down, but it's the same.. // Hide submenu only if it's not current, or not parent

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

2008-09-03 Thread foxtrot
sorry about the missing code! it's quite simple: --- $(document).ready(function(){ $(#client).autocomplete(data.json, { parse: function(data) { return $.map(eval(data), function(row) {

[jQuery] Needs help with Growl

2008-09-03 Thread [EMAIL PROTECTED]
Can someone please help me implement growl? I am struggling to find any documention for a simple implementation of this plugin. I have tried the standard code script type=text/javascript src=~/javascript/Growl/growl.js/ script script type=text/javascript src=~/javascript/Growl/

[jQuery] Re: error $ not defined

2008-09-03 Thread Chris
You got it. here you go. the file is located in c:/inetpub/wwwroot/domain and the jquery file is located in c:/inetpub/wwwroot/domain/js/jquery-1.2.6.min.js html head script type=text/javascript src=js/jquery-1.2.6.min.js/script script type=text/javascript

[jQuery] Autocomplete - every item shown regardless of letter typed

2008-09-03 Thread foxtrot
Oops, sorry aboute the missing code $(document).ready(function(){ $(#client).autocomplete(data.json, { parse: function(data) { return $.map(eval(data), function(row) { customers = data;

[jQuery] Re: need help with opacity

2008-09-03 Thread bobh
Ack, that's a bit of a blow :) Time to rethink my design concept... Thanks Tom. On 2 sep, 17:11, Cybernoxa [EMAIL PROTECTED] wrote: 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

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

2008-09-03 Thread Alex Weber
Thanks so much Mike! Got it! :) Cheers! Alex On Sep 2, 6:33 pm, Michael Geary [EMAIL PROTECTED] wrote: 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] Re: jquery validation plugin problem in textarea [validate]

2008-09-03 Thread Jörn Zaefferer
The required method uses $.trim on the value first, before checking the length. \n is considered whitespace and therefore ignored. So a textarea that contains nothing but \n is invalid for the required method. Does that answer your question? Jörn On Tue, Sep 2, 2008 at 7:01 PM, Andy [EMAIL

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

2008-09-03 Thread Jörn Zaefferer
Looks like a typo in your parse implementation: value: row.aname, should be value: row.name, Jörn On Wed, Sep 3, 2008 at 8:32 AM, foxtrot [EMAIL PROTECTED] wrote: Oops, sorry aboute the missing code $(document).ready(function(){ $(#client).autocomplete(data.json, {

[jQuery] Re: jquery in rails/rjs files

2008-09-03 Thread Karl Rudd
A quick Google turned up this: http://yehudakatz.com/2007/01/31/using-jquery-in-rails-part-i/ Karl Rudd On Wed, Sep 3, 2008 at 4:38 PM, Jochen Kaechelin [EMAIL PROTECTED] wrote: Is it possible to use jquery in rails rjs files? I have a lot of files like: page[:item].replace_html render

[jQuery] Why this simple code doesn't work ?!?

2008-09-03 Thread etnas
Hi, I have this simply code and I don't know where is the problem: The script: ** $(document).ready(function(){ $('#button').click(function(){ var data = 'input type=button value=push class=new_buttonbr /';

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

2008-09-03 Thread Andy
Hi Jorn, thanks for replying What i meant was, if for example, an a'ddress' textarea, users will input his address and there will must be newline(\n) character there. It's validated for sure with jquery validation plugin but it doesnt seem to send the value in the textarea, as it is read as

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

2008-09-03 Thread Guy Fraser
Matt Kruse wrote: 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) I think everyone is missing the whole point of

[jQuery] need to display a number of items based on browser size, before i get to run any js

2008-09-03 Thread Rene Veerman
Hi. Today, i've got a chicken-and-egg puzzle for your enjoyment :) In order to properly support google indexing of published content hosted by my CMS', which scales to browser-size, no matter what it is initially or how the user resizes it. Adding meta info for the many pictures hosted via my CMS

[jQuery] Re: Query String Object plugin help

2008-09-03 Thread Karl Swedberg
Hi Brett, JavaScript is case-sensitive. You've declared the variable as BlueSky, with an uppercase S, but you're referring to it as Bluesky, with a lowercase s. It's been helpful for me to stick to a convention. For my JavaScript variables, I use the lower-camel-case convention: start

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

2008-09-03 Thread Alex Weber
There's quite a few ways! :) You can use this link to do it directly from your browser: http://fmarcia.info/jsmin/test.html Or if you're more skeptical the original implementation and ports to every programming language you can eat with a spoon are here:

[jQuery] Re: Why this simple code doesn't work ?!?

2008-09-03 Thread MorningZ
It's because you are rebinding the existing buttons *again* with your event lets_go So like you start off with: - | Make a new button | - You create a new button and call lets_go - | Make a new button |

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

2008-09-03 Thread Andy Matthews
According to a site called GetClicky, Chrome already has 2.8% market share: http://getclicky.com/chrome/ -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Kruse Sent: Tuesday, September 02, 2008 4:49 PM To: jQuery (English) Subject:

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

2008-09-03 Thread Andy Matthews
Makes sense because Chrome is based on WebKit just like Safari. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of timothytoe Sent: Tuesday, September 02, 2008 5:49 PM To: jQuery (English) Subject: [jQuery] Re: jQuery test suite on new Google

[jQuery] Re: New Google Browser announced

2008-09-03 Thread Andy Matthews
Microsoft can't retire IE6 any more than Ford could retire 1996 Ford Explorers. It has to be the user's choice. What's a better suggestion is for WEBSITES to stop supporting IE6 (coding CSS and JS fixes and workarounds) and encourage people to upgrade on their own. _ From:

[jQuery] Simple Templates

2008-09-03 Thread Andrew Hedges
Introducing a new jQuery plug-in, Simple Templates: http://andrew.hedges.name/blog/2008/09/03/introducing-jquery-simple-templates One thing I have missed from my Prototype days (shudder, I know!) is simple, built-in templating. I know there are other templating plugins, but I liked the

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

2008-09-03 Thread Jörn Zaefferer
I still don't get what the actual issue. What do you mean with send? Sending via Ajax to the server? To a validation method? Jörn On Wed, Sep 3, 2008 at 1:15 PM, Andy [EMAIL PROTECTED] wrote: Hi Jorn, thanks for replying What i meant was, if for example, an a'ddress' textarea, users will

[jQuery] Anyone know why mouse position inside div is different in Firefox and IE

2008-09-03 Thread Artzone
I have a div and I want to capture the x and y values when there is a click inside the div. This works great in Firefox and Safari but the offset seems to be wrong in IE7. There's a sample page here: http://static1.shopify.com/s/files/1/0003/0911/assets/testclick.html And this is the function

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

2008-09-03 Thread Rey Bango
Yep. You probably got that from TechCrunch and I tend to agree with their comments that it's a spike due to the newness of the browser and can expect to see that figure drop as people go back to using their standard browsers. Rey Andy Matthews wrote: According to a site called GetClicky,

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

2008-09-03 Thread Rey Bango
It's funny how quickly people begin to forget how Firefox is the only browser to-date that has been able to wrestle any market share from Microsoft and force Microsoft back to the standards table. Yep, let's find a way for Google to kill Mozilla. Good thinking Bill. Rey... Bil Corry wrote:

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

2008-09-03 Thread Giovanni Battista Lenoci
Rey Bango ha scritto: Yep. You probably got that from TechCrunch and I tend to agree with their comments that it's a spike due to the newness of the browser and can expect to see that figure drop as people go back to using their standard browsers. Rey I've tried chrome, very nice toy and

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

2008-09-03 Thread Andy Matthews
According to getclicky.com, Chrome already has an almost 3% market share: getclicky.com/chrome/ -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Wednesday, September 03, 2008 9:01 AM To: jquery-en@googlegroups.com Subject:

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

2008-09-03 Thread Rey Bango
That's a key thing. Firefox has a vast ecosystem of extensions (approx. 5,000+ add-ons). And in the interest of full disclosure,I work for Mozilla and I help manage Mozilla's Firefox extensions site, http://addons.mozilla.org. :D Rey... Giovanni Battista Lenoci wrote: Rey Bango ha

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

2008-09-03 Thread Rey Bango
I can see it growing for now. It's new and the whole Net is buzzing about it. Not surprising at all. Rey... Andy Matthews wrote: According to getclicky.com, Chrome already has an almost 3% market share: getclicky.com/chrome/ -Original Message- From: jquery-en@googlegroups.com

[jQuery] Re: AutoComplete

2008-09-03 Thread Shelane
Your data needs to be returned with a \n between each item returned. If you want to return more information about First and it's all related to that record, you separate that data with a pipe | [First\nSecond\nThird] or [First|Name\nSecond|Name] On Jul 21, 5:02 pm, shapper [EMAIL PROTECTED]

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

2008-09-03 Thread timothytoe
OK. I think I see. By the way, I just did some light debugging in Chrome with Firebug Lite. You can poke around in the DOM, which is nice. If anyone wants to try it, the best way to do it is with the latest Firebug Lite (the one that actually FEELS like Firebug, based off the old Pi debugger).

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

2008-09-03 Thread faizal iqbaal
did it work for ya On Tue, Sep 2, 2008 at 5:31 PM, faizal iqbaal [EMAIL PROTECTED]wrote: //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

[jQuery] autocomplete onfocus and other dynamic input

2008-09-03 Thread Shelane
Additional Dynamic Input: I have two input fields. The user types in something in the first field, then needs to type something in the second field. That second field is an autocomplete and needs to send two pieces of info to the server - the current input and the value of the first field.

[jQuery] Re: make a div invisible when it is empty

2008-09-03 Thread Michael Geary
You almost had it there. Your '#header div empty' selector, though, is looking for elements whose *tagname* is empty, like this: div id=header div emptynot a valid tag!/empty /div /div The selector you want is '#header div:empty'. See:

[jQuery] Re: New Google Browser announced

2008-09-03 Thread Guy Fraser
Andy Matthews wrote: Microsoft can't retire IE6 any more than Ford could retire 1996 Ford Explorers. It has to be the user's choice. What's a better suggestion is for WEBSITES to stop supporting IE6 (coding CSS and JS fixes and workarounds) and encourage people to upgrade on their own. I

[jQuery] Simple click event

2008-09-03 Thread byron
I created an email link, that I want invoked (clicked) on page load. I thought I could simply do: $().ready(function() { $(#thelink).click() }) Do I need to do something else? Thanks.

[jQuery] Dynamic mask

2008-09-03 Thread Carlos Tavares
Hey All,A problem so bad... Can I change mask to rich:inputText/? Like this: h:inputText value=(#any) id=edt rich:jQuery selector=#edt query=mask('999.999.999-99') !-- here change to mask('99.999.999/-99') dynamically timing=onload/ /h:inputText

[jQuery] Re: Clash between jQuery UI datepicker 1.5.2 and an ASP.net 3.5 CustomValidator

2008-09-03 Thread [EMAIL PROTECTED]
It works for me. However the syntax Jeff posted is wrong. It should be: $(ctl).datepicker({onSelect: function() {}}); On Sep 1, 5:08 pm, tekanet [EMAIL PROTECTED] wrote: This doesn't work for me: I can't set the onSelect with that syntax, I tried with .bind(onSelect,function(){}) but nothing.

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

2008-09-03 Thread Ca-Phun Ung
Chrome is pretty exciting as it's not just another browser but one that sets to up-the-bar. I think it definitely gives other vendors food for thought. As to whether it would kill IE? I'm sure it will take some of IE's share but only after exhausting FF, Opera and Safari's market... I

[jQuery] Change link dependant on select box.

2008-09-03 Thread Robert Rawlins
Hello Guys, I'm looking for some help on getting started with a script that'll change the href attribute of a link dependant on the option selected in a select box. To add a little 'spice' the challenge the value of the href must be determined from a set of key value pairs. Let me try and

[jQuery] superfish indicators

2008-09-03 Thread jess
Hey All! Yay for swanky drop downs! I'm implemented super fish drop downs on a site I'm building and I was wondering if anyone could help me figure out how to do away with the arrow indicators altogether. They're pushing my layout around, and I would really just like to rid of them completely

[jQuery] New Plugin - Agile Carousel - Looking For FeedBack

2008-09-03 Thread Ed
I just released vAlpha of a JQuery Plugin called agile carousel: http://code.google.com/p/agile-carousel/ Use Jquery UI effects as slide transitions (plus other, built-in transitios). Also use JQuery UI easing types. PHP is used, so you can specify the directory that contains your slides and

[jQuery] Re: I don't want to downoad a plugin

2008-09-03 Thread Andy Matthews
Is there a reason you don't want to download the library, or plugins? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jjsanders Sent: Wednesday, September 03, 2008 9:09 AM To: jQuery (English) Subject: [jQuery] I don't want to downoad a plugin

[jQuery] Re: I don't want to downoad a plugin

2008-09-03 Thread Mike Alsup
Currently I use jQuery and haven't downloaded the library, rather I am using the online version. So I have a link to my jQuery library. script type=text/javascript src=http://ajax.googleapis.com/ajax/ libs/jquery/1.2.6/jquery.min.js/script But now I want to use the UI tabs plugin.

[jQuery] position iframe elements in parent document?

2008-09-03 Thread AstroIvan
I haven't tried this, but I'm wondering if this is even possible. Dragging a div from an iframe to somewhere outside of it. TIA!

[jQuery] Re: superfish indicators

2008-09-03 Thread Joel Birch
Hi Jess, I'm replying from my iPod so will be brief. The extra space can be removed by deleting the padding from the .sub-with-ul class (i think thats what it's called) within superfish.css. However, if you still want to disable the arrows you can set autoArrows to false within the options

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

2008-09-03 Thread Jörn Zaefferer
Well, when using remote JSON, your server code has to do the filtering. Your server returns all results, so the autocomplete displays them all. Here are several demos with local JSON, which may be closer to what you are looking for. You can even get the JSON via Ajax, then use it to initialize

[jQuery] Re: Plugin developement

2008-09-03 Thread Balazs Endresz
It depends on what the public method returns. If it returns the jQuery object (the 'this' inside the plugin) then you have to call $ ('#example').pluginname.doSomethingPublic().pluginname.doSomethingElse(). If you want to chain your methods directly you have to return 'this' inside your public

[jQuery] Re: Simple click event

2008-09-03 Thread Karl Swedberg
You can't trigger a link's default action with jQuery, but you can do something like this: $().ready(function() { $('#thelink').bind('click', function() { window.location = this.href; return false; }).trigger('click'); }); --Karl Karl Swedberg

[jQuery] csssupport

2008-09-03 Thread Ferenz
I wrote a css 2/3 support plugin: http://pastebin.com/f7c6c1e82 Call it like this $('link[href~=css3.css]').supportcss(2); sorry for my English ...

[jQuery] jQuery + Gears Data Dilemma

2008-09-03 Thread Stan Lemon
Greetings, An application I've been working on is in the process of trying to integrate Gears support into itself. The application is heavily driven by jQuery, UI and an assortment of plugins. The support for gears involves a number of get and set type calls, where data is retrieved and

[jQuery] Re: jquery in rails/rjs files

2008-09-03 Thread Jochen Kaechelin
Am 03.09.2008 um 13:19 schrieb Karl Rudd: A quick Google turned up this: http://yehudakatz.com/2007/01/31/using-jquery-in-rails-part-i Thanx for this hint . I visited this site yesterday ... but I could not find any tips to use jquery inside rjs files.

[jQuery] Re: need help with opacity

2008-09-03 Thread turbodurso
Hey bob, you don't necessarily have to rethink your design, just use transparent png files (tiled for background) They can now render on all browsers (including IE 5 +) with this little fix : http://www.twinhelix.com/css/iepngfix/ Also, this dwld is quite handy for transparent backgrounds:

[jQuery] digitalBush Plugin newbie...losing text onblur()

2008-09-03 Thread Otacon_se
Hey, My boss talk to me about Jquery, never done that before. We need to mask HTML input for phone number and date fields. So, I found this plugin digitalBush MaskInput and it works great but I don't know why, i'm losing the data in the field when the input loses the focus. html script

[jQuery] Re: superfish indicators

2008-09-03 Thread jess
Oh RAD You rock, Joel. Thank you SO much! Woot! -jess On Sep 3, 11:40 am, Joel Birch [EMAIL PROTECTED] wrote: Hi Jess, I'm replying from my iPod so will be brief. The extra space can be removed by deleting the padding from the .sub-with-ul class (i think thats what it's called)

[jQuery] Re: jquery in rails/rjs files

2008-09-03 Thread Klaus Hartl
What about: http://mad.ly/2007/05/17/jquery-ajax-rails/ http://ennerchi.com/projects/jrails --Klaus On Sep 3, 5:58 pm, Jochen Kaechelin [EMAIL PROTECTED] wrote: Am 03.09.2008 um 13:19 schrieb Karl Rudd: A quick Google turned up this:  

[jQuery] jQuery dollar not defined

2008-09-03 Thread Marlissa Dijkman
I can not find why $ (dollar) is not defined in my code. This is the include-part: style type=text/css media=all @import http://jquery.com/demo/thickbox/css/global.css;; @import http://jquery.com/demo/thickbox/thickbox-code/thickbox.css;; /style link

[jQuery] different behavior with jquery1.2.6

2008-09-03 Thread asrs63
Hello, I have an asp.net (vs2005) web-app. When i use jquery1.1.4, then, on submitting the form, the background gets grayed-out and an 'results being generated' image (that i have put in the asp.net code) gets displayed. i replaced the 1.1.4 file with 1.2.6, and now the background doesn't get

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

2008-09-03 Thread Andy
I meant, why if there is a \n character on textarea, it couldnt send its value? Thanks Andy On Sep 3, 8:46 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote: I still don't get what the actual issue. What do you mean with send? Sending via Ajax to the server? To a validation method? Jörn On

[jQuery] shadowbox resize iframe after content loads

2008-09-03 Thread Gordon
On our website I am using a shadowbox to view videos hosted on another site in the product page window. The problem is that recently the company hosting the videos have started providing several different size of videos. All the different video pages, however, have an element with an ID of

[jQuery] Re: jquery in rails/rjs files

2008-09-03 Thread Jochen Kaechelin
Am 03.09.2008 um 18:08 schrieb Klaus Hartl: What about: http://mad.ly/2007/05/17/jquery-ajax-rails/ http://ennerchi.com/projects/jrails bong! exactly what i was looking 4! thanx!

[jQuery] jQuery search

2008-09-03 Thread [EMAIL PROTECTED]
Hi, I am looking for a jquery plugin that will show the results of a search form without refreshing the page. So when someone press search it wont reload the site but will show the founded results. Any one now a plugin? Erwom

[jQuery] Re: Change link dependant on select box.

2008-09-03 Thread MorningZ
Why wouldn't you just have select name=customer id=customer option value=50ccdae0-79bf-11dd-ad8b-0800200c9a66Joe Bloggs/option option value=9c335820-d878-4db3-b90a-728046cb8849Dave Something/option /select a id=CompanyLink/a script type=text/javascript

[jQuery] Re: New Plugin - Agile Carousel - Looking For FeedBack

2008-09-03 Thread MorningZ
Looks like it still needs some work, as looking at the first demo page http://www.5bosses.com/examples/agile_carousel//jqueryui_example/slideshow.html going anywhere other than the first image reverts to the first image (Windows 2003 with FF3 is what i am browsing it with) Using IE7 for the

[jQuery] Re: jQuery search

2008-09-03 Thread Michael Nelson
Have you tried jqGrid? http://www.trirand.com/blog/ thanks, Michael - Original Message From: [EMAIL PROTECTED] [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Wednesday, September 3, 2008 9:35:16 AM Subject: [jQuery] jQuery search Hi, I am looking for

[jQuery] jCarousel doesn't parse UTF-8 charachters

2008-09-03 Thread markk
Hi, I've added some text to images in the jCarousel, but the javascript doesn't parse and convert the UTF-8 characters in the text. It breaks the text, or replaces it with ??? characters. Can someone help please with how to modifiy the javascript code to make it parse and convert the UTF-8

[jQuery] Re: New Google Browser announced

2008-09-03 Thread Ryan Zec
I don't think chrome his wanting to compete with firefox. From what i read, google as already put a lot of money into firefox so it would make no sense to build a browser to directly compete with it. From what people say, chrome is to compete with MSIE as a simple and easy to use browser, which

[jQuery] Re: New Google Browser announced

2008-09-03 Thread chris thatcher
I hope it's enough for microsoft to retire ie6, but frankly I worry a little bit about the gas giant that google is becoming. I can't see any reason they couldn't simply have given some funding to mozilla and kept providing their services as is, except... to hone their tracking of my browser

[jQuery] Re: different behavior with jquery1.2.6

2008-09-03 Thread Michael Geary
There were a number of jQuery API changes between 1.1.x and 1.2.x. If you find the part of your code that isn't working, you can update it to work with 1.2.x. JavaScript debugging tools such as Firebug and the Web Developer Toolbar will help greatly. In particular, you may find the error simply

[jQuery] Re: jQuery search

2008-09-03 Thread [EMAIL PROTECTED]
I don't think thats what i am looking for. I just look for seome code to search the database but shows the results without a refresh. On 3 sep, 18:41, Michael Nelson [EMAIL PROTECTED] wrote: Have you tried jqGrid? http://www.trirand.com/blog/ thanks, Michael   - Original Message

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

2008-09-03 Thread rolfsf
Yes - thanks Faizal. At least it pointed out the error I was making. I'm not (currently) using $.extend, but I did separate the data set options from the other chart options, and put them in a variable. Now I'm trying to add a select that will allow the user to switch chart styles - point, line,

[jQuery] Re: make a div invisible when it is empty

2008-09-03 Thread Discret
I know was as strange script, in fact I can not change the server side, so I sought a way to remove the div that contain spaces !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http:// www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd html xmlns=http://www.w3.org/1999/xhtml; head

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

2008-09-03 Thread Mika Tuupola
On Sep 3, 2008, at 6:44 AM, viktor wrote: How do you minify a .js file? http://www.crockford.com/javascript/jsmin.html On bottom of the page is link for implementations in several languages. -- Mika Tuupola http://www.appelsiini.net/

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

2008-09-03 Thread Bil Corry
Rey Bango wrote on 9/3/2008 9:01 AM: Yep, let's find a way for Google to kill Mozilla. Good thinking Bill. If your comment is directed to me, then you've misunderstood. I use Firefox. I haven't installed Chrome, nor do I plan to. - Bil

[jQuery] Re: jquery in rails/rjs files

2008-09-03 Thread Mika Tuupola
On Sep 3, 2008, at 8:38 AM, Jochen Kaechelin wrote: Is it possible to use jquery in rails rjs files? JRails should provide drop in replacement for Prototype. http://ennerchi.com/projects/jrails -- Mika Tuupola http://www.appelsiini.net/

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

2008-09-03 Thread Rey Bango
Hi Bill, I was replying to your comment here: Converting a few FF users over and saving on the USD $60+ million Google pays Mozilla every year probably doesn't hurt either... Did I misread this or was it said in a context that I missed? Rey... Bil Corry wrote: Rey Bango wrote on

[jQuery] Two .ajax POSTS not working?

2008-09-03 Thread [EMAIL PROTECTED]
Hi all, I have the following code run when a button is clicked: // Check the username isn't taken var dataString = 'username='+ username + 'password=' + password; //alert (dataString);return false; $.ajax({ type: POST, url: bin/login-check.php,

[jQuery] Overriding original handler/callback on dependent autocomplete fields

2008-09-03 Thread [EMAIL PROTECTED]
Hi. I'm trying to deploy a form with dependent autocomplete fields in Drupal 6. The second dependent field is a Drupal node reference field which has its own callback function specified by a native module. Once the user has made their first selection, I need to prevent that callback from

[jQuery] Re: different behavior with jquery1.2.6

2008-09-03 Thread asrs63
Thanks Mike, for showing three ways to handle this. Of these 3, first two appears to be non-working (am using IE so not sure if can use firebug and i tried adding a line for compatibility .js file that i downloaded, but still the same results). I guess i will look at the 3rd option that you have

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

2008-09-03 Thread Dana
The lack of a plugin system is a major drawback that will hinder adoption dramatically, especially among tech crowds. I have tried out Chrome and admit that I am impressed with it's speed, simplicity and specs, But I will not be able to even think about using it as a primary browser till a plugin

[jQuery] Re: jQuery search

2008-09-03 Thread Michael Nelson
Take a look at the loading data demo: http://www.trirand.com/jqgrid/jqgrid.html You'll still need server side code to actually query the database. That's described, along w/ a php sample here (under Tutorial: creating your first grid): http://www.secondpersonplural.ca/jqgriddocs/index.htm

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

2008-09-03 Thread Ca-Phun Ung
Ca-Phun Ung wrote: I totally agree, a plugin acrhitecture is a must! And it does exist in Chrome! Plugins are referred to quite a bit in this excellent comic strip [1] by Scott McCloud. Ah, just correcting myself (I hope that's allowed here :) As for plugins, Chrome will support

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

2008-09-03 Thread Bil Corry
Rey Bango wrote on 9/3/2008 1:09 PM: I was replying to your comment here: Converting a few FF users over and saving on the USD $60+ million Google pays Mozilla every year probably doesn't hurt either... Did I misread this or was it said in a context that I missed? My comment was written

[jQuery] Re: need help with opacity

2008-09-03 Thread bobh
Yes, I realised this a few hours ago. I was focussing too much on the solid bg color. On 3 sep, 17:48, turbodurso [EMAIL PROTECTED] wrote: Hey bob, you don't necessarily have to rethink your design, just use transparent png files (tiled for background) They can now render on all browsers

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

2008-09-03 Thread Ca-Phun Ung
Dana wrote: The lack of a plugin system is a major drawback that will hinder adoption dramatically, especially among tech crowds. I have tried out Chrome and admit that I am impressed with it's speed, simplicity and specs, But I will not be able to even think about using it as a primary

[jQuery] Re: Not selector help

2008-09-03 Thread Josh Nathanson
This should do it... $(input:checkbox:not(#myid)).attr(checked,false); -- Josh - Original Message - From: Brad [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Wednesday, September 03, 2008 11:57 AM Subject: [jQuery] Not selector help I'm looking for the

[jQuery] sorting digits

2008-09-03 Thread Swaroop Patra
Hi all, Currently i am working on tablesorter plugin with jqery to sort column values in a table. My problem is when there is mixed data in a column like some numbers and - (when there is no data to display) its sorting the digits treating as string. e.g. in a column if the values are 7, 12, 9,

[jQuery] Not selector help (Solved)

2008-09-03 Thread Brad
How to use :not in the selector was throwing me. Docs were down, but back up (but very slow). $ ([type=checkbox]:not('#specific_checkbox_id')).removeAttr('checked') On Sep 3, 12:57 pm, Brad [EMAIL PROTECTED] wrote: I'm looking for the quickest way to uncheck all of the checkboxes on a page

[jQuery] make a div invisible when it is empty

2008-09-03 Thread Discret
Good morning, I am Graphic designer and I use Jquery with Moss (sharepoint) CMS Microsoft, developers of this gas plant have no sense of aesthetics code and optimization. I assumed that with a little magic wand, I was going to do div disappear when they are empty, then yes I could have use

[jQuery] Re: Anyone know why mouse position inside div is different in Firefox and IE

2008-09-03 Thread Hamid
I think default browser value for padding margin issue difference result. for same result i put css code like this: style type=text/css * {margin: 0; padding: 0} /style On Sep 3, 6:41 am, Artzone [EMAIL PROTECTED] wrote: I have a div and I want to capture the x and y values when there is a

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

2008-09-03 Thread Karl Swedberg
Chrome also has its own DOM viewer/console. To use it, right-click somewhere in the document and choose Inspect Element. Not sure how it compares to Firebug Lite, but it's another option. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Sep 2, 2008, at

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

2008-09-03 Thread faizal iqbaal
cool...let me have the code as well i'll also learn a new approach or is it the same url On Wed, Sep 3, 2008 at 1:30 PM, rolfsf [EMAIL PROTECTED] wrote: Yes - thanks Faizal. At least it pointed out the error I was making. I'm not (currently) using $.extend, but I did separate the data set

[jQuery] Re: New Google Browser announced

2008-09-03 Thread Jonathan
For those interested in more information on Chrome, checkout their comic book here: http://www.google.com/googlebooks/chrome/ It does a nice job of explaining some of the thinking behind Chrome. I have been playing around with it since yesterday and it's great! Super fast and super simple.

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

2008-09-03 Thread pedramphp
I wonder how come google load pages half the time that firefox 3.0 does ... thats so interesting..right now I use firefox for its firebug and plugins and I use safari 3 because it takes small memory... it is amazing that CHrone has 3% of hits in the internet

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

2008-09-03 Thread timothytoe
That was me. I was up all night trying every site I could think of. On Sep 3, 1:38 pm, [EMAIL PROTECTED] wrote: I wonder how come google load pages half the time that firefox 3.0 does ... thats so interesting..right now I use firefox for its firebug and plugins and I use safari 3 because it

  1   2   >