[jQuery] Re: Autocomplete: Multi-dim JSON array and Custom format

2008-06-17 Thread Shawn
Check out the "result" method the autocomplete makes available: http://docs.jquery.com/Plugins/Autocomplete/result#handler The "data" parameter represents the raw data array. OR, you may need to set up the "formatResult" parameter when initializing the autocomplete (or via the setOptions() me

[jQuery] Re: Please review work with JQuery

2008-06-17 Thread Samyak Bhuta
k ... will do that , thanks :) On Wed, Jun 18, 2008 at 10:20 AM, R. Rajesh Jeba Anbiah < [EMAIL PROTECTED]> wrote: > > On Jun 18, 1:34 am, "Samyak Bhuta" <[EMAIL PROTECTED]> wrote: > > ThanksRajesh, > > > > I will check this out for sure ... Will it help in SEO front ? > >Yep. I actually mea

[jQuery] Advice on ajax links

2008-06-17 Thread hubbs
I just wanted to get some advice, and maybe some best practices from those who have done this. I am wanting to use ajax, to load content into a div. I am wanting the link to be more than just a line of text. It will be a box with an image, and multiple lines of text in it. I had wished I could

[jQuery] Re: How to clone jQuery object?

2008-06-17 Thread R. Rajesh Jeba Anbiah
On Jun 17, 5:28 pm, Ariel Flesler <[EMAIL PROTECTED]> wrote: > $D.fn = $D.prototype; That doesn't even work; it overwrites $. -- Email: rrjanbiah-at-Y!comBlog: http://rajeshanbiah.blogspot.com/

[jQuery] Re: Which grid?

2008-06-17 Thread R. Rajesh Jeba Anbiah
On Jun 17, 10:27 pm, Ken Gregg <[EMAIL PROTECTED]> wrote: > I was using Rico but dropped it for lack of development activity. > Everything but the grid is available in jquery. I would love to see > the dynamic data part of the grid incorporated into flexigrid. Think > that would make a great combi

[jQuery] Re: Please review work with JQuery

2008-06-17 Thread R. Rajesh Jeba Anbiah
On Jun 18, 1:34 am, "Samyak Bhuta" <[EMAIL PROTECTED]> wrote: > ThanksRajesh, > > I will check this out for sure ... Will it help in SEO front ? Yep. I actually meant, do not hide the link with "#"; just give the link to page (say, ) -- Email: rrjanbiah-at-Y!comBlog: http://rajeshanbi

[jQuery] Re: Is there a way to use the css function with $(document) directly?

2008-06-17 Thread Ariel Flesler
> Thanks for the pointer! Say, is there a way this functionality could > be integrated into jQuery itself? Nope. > Can I chain like this? $.rule returns a Rule object with its own methods. I don't recall if the methods are chainable, maybe they are. > > Also consider that you may want to distin

[jQuery] Re: hover flickering, snow storm pixels on JPGs (beginner problem)

2008-06-17 Thread Mike Alsup
> Ok, will manage to squeeze the Microsoft Bug > > What about the hover issue? I don't see any hover issue. What do you see?

[jQuery] Re: Help fading images with jquery.

2008-06-17 Thread Mike Alsup
> all im trying to do is come up with a good way to fade images in and > out. > > for example > >    image 1.jpg >    image 2.jpg >    image 3.jpg > > > would fade the above images in and out between each other Here's a 3KB solution: http://www.malsup.com/jquery/cycle/lite/

[jQuery] Re: scope of jquery functions?

2008-06-17 Thread Hamish Campbell
The issue is that the click function is bound on document.ready - so stuff added later won't have the binding. See the FAQ: http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_Ajax_request.3F On Jun 18, 10:21 am, Brian Cummiskey <[EMAIL PROTECTED]> wrote: >

[jQuery] cluetip question: is it possible to have tabs inside a cluetip?

2008-06-17 Thread se
here's what i'm trying to achieve, a tooltip that looks like this and stays open until closed (no close button there atm). is this possible, and if so -- how? i tried to rebuild this into the page from where the tooltip is called but i couldn't get it to work

[jQuery] Validation plugin help please

2008-06-17 Thread Lossed
Hi. I tried posting this to the plugin group days ago but it's not showing and I'm not sure if it's every going to show. My form disappears when the focus changes between form fields. Here's an example: -- $(doc

[jQuery] Re: li:gt(...) keeps counting to the next list

2008-06-17 Thread Karl Rudd
The selector "ul li" selects _all_ LI elements in all UL elements, and puts them in the same "collection". So the collection/array will look like this: alpha, beta, gamma, delta If you want to deal with each UL element separately then use "each()", like so: $("ul").each( function() { //

[jQuery] scope of jquery functions?

2008-06-17 Thread Brian Cummiskey
Hello all, New to this list and working on my first site with jQuery. So far so good, for the most part. I've run into one problem that i can't put my mouse on. I have a simple slide-out 'cart'. After you add an item via an ajax post, the slide out shows the cart with the new items in it.

[jQuery] Re: Help with tabsLoad

2008-06-17 Thread keny
Hi, Thanks now ist 99% right and better. Everyting work for the fisrt level of link but not for other one. If you check my examle under tab # 2 click to load page #3 Page load in the tab right. (a big big thanks you !) Next click to load page #1 or #2 Page load not in tab . Is it possible t

[jQuery] Re: $.("anc desc").text() returns all text, not descendant

2008-06-17 Thread Adam
Sorry... To bring it all together, you could do: $(this).children('.personal').text(); That will give you the text for the current divs child div.personal. Adam On Jun 17, 5:20 pm, Adam <[EMAIL PROTECTED]> wrote: > Hey, > > 1. Let's say your div is #mydiv. > > Use > $('#mydiv .personal').t

[jQuery] Re: Help with tabsLoad

2008-06-17 Thread keny
Opss the example is here : http://www.snipvideo.com/tabs/ Thanks On 17 juin, 02:07, Klaus Hartl <[EMAIL PROTECTED]> wrote: > No that's wrong. As I already stated: > > The problem with your loadTab function was that it was > reinitializing tabs turning them into in-page tabs as all anchor > eleme

[jQuery] Re: Is there a way to use the css function with $(document) directly?

2008-06-17 Thread Brian J. Fink
@Hamish: Yes, that is what I had in mind, but more like: $(document).css('p','color: red; border: 1px gray inset').css('h1','font-size: 200%; text-align: center; text-transform: small-caps'); On Jun 16, 4:41 pm, Hamish Campbell <[EMAIL PROTECTED]> wrote: > As an example do you mean: > > $(docume

[jQuery] Re: Is there a way to use the css function with $(document) directly?

2008-06-17 Thread Brian J. Fink
Thanks for the pointer! Say, is there a way this functionality could be integrated into jQuery itself? I also think that the structure is still a little awkward, but I'm glad someone thought of it already. Can I chain like this? $.rule('a{text-decoration:none}','style').rule('h2{text- align:cente

[jQuery] Re: bug in jquery.form.js / function cb()

2008-06-17 Thread Fil
> Fixed. 1.3 won't break the present version of jQuery.Form. > Thanks for catching. Great! thanks a lot. -- Fil

[jQuery] Re: xml parsing error

2008-06-17 Thread Sam Sherlock
first off I am no jquery or javascripot guru - I got this working in both ie6 & ff3 in parse.js uncomment the ajax attempt and try the following $.ajax({ type: "GET", url: path, dataType: "xml", success: function(data) { /* perform a functi

[jQuery] Re: hover flickering, snow storm pixels on JPGs (beginner problem)

2008-06-17 Thread tlob
Ok, will manage to squeeze the Microsoft Bug What about the hover issue? Thanks for your help tom On Jun 17, 11:25 pm, "Dan G. Switzer, II" <[EMAIL PROTECTED]> wrote: > Since the problem is w/absolute black being interpreted as transparent, what > happens if you put a black background behin

[jQuery] Re: Adding the dialog function dynamically to each li element

2008-06-17 Thread Jason Huck
I think, at a bare minimum, you'll want to change this: var title = $(this h3).val(); ...to this: var title = $('h3', this).text(); ...and this: $(this h3).append... ...to this: $('h3', this).append... I think that'll solve your immediate problem. - jason On Jun 17, 2:37 pm, Dan <[EMA

[jQuery] Re: hover flickering, snow storm pixels on JPGs (beginner problem)

2008-06-17 Thread Dan G. Switzer, II
Since the problem is w/absolute black being interpreted as transparent, what happens if you put a black background behind the images? -Dan >-Original Message- >From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On >Behalf Of Andy Matthews >Sent: Tuesday, June 17, 2008 5:16 PM >To

[jQuery] Re: $.("anc desc").text() returns all text, not descendant

2008-06-17 Thread Adam
Hey, 1. Let's say your div is #mydiv. Use $('#mydiv .personal').text() or $('#mydiv').children('.personal').text() 2. To get descendants use children(expr) or contents() - http://docs.jquery.com/Traversing 3. To get current element use $(this) or to add to selection use andSelf() - http://docs

[jQuery] xml parsing error

2008-06-17 Thread koko
Hello, I have a problem and I googled it for the solution but it seems that there is no solution for it !! I used $.get and $.ajax but the same problem could you take a look at the source just open index.html in IE and FF and see the difference also take a look at the comments in parse.js

[jQuery] Re: hover flickering, snow storm pixels on JPGs (beginner problem)

2008-06-17 Thread Mike Alsup
Yes, it's an IE problem. But it's solvable. Please read this thread: http://groups.google.com/group/jquery-en/browse_thread/thread/746b31e7edef9c8c/354fd4b7e5de6cc0 On Jun 17, 5:15 pm, "Andy Matthews" <[EMAIL PROTECTED]> wrote: > Ack...both you and I can confirm that it's still a bug in IE7 a

[jQuery] Re: Cycle Plugin - Change Slides and Pause on Hover (existing Pager)

2008-06-17 Thread Mike Alsup
There is pause-on-hover capabilities for the slides themselves, but not the pager elements. If you want to turn the auto-slideshow off just set timeout to zero. Mike On Jun 17, 5:04 pm, j_sico <[EMAIL PROTECTED]> wrote: > Is it possible to both use existing elements for the pager, and to > cha

[jQuery] Re: hover flickering, snow storm pixels on JPGs (beginner problem)

2008-06-17 Thread Andy Matthews
Ack...both you and I can confirm that it's still a bug in IE7 as well. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tlob Sent: Tuesday, June 17, 2008 3:53 PM To: jQuery (English) Subject: [jQuery] Re: hover flickering, snow storm pixels on JP

[jQuery] Cycle Plugin - Change Slides and Pause on Hover (existing Pager)

2008-06-17 Thread j_sico
Is it possible to both use existing elements for the pager, and to change as well as pause on hover? Currently the slides change on hover as expected, but the slideshow continues to run. Here's my code: $('#front-image').cycle({ speed: 1, timeout: 2000,

[jQuery] $.("anc desc").text() returns all text, not descendant's text

2008-06-17 Thread mkn
Hi all, Feel free to refer me to a FAQ if I've missed one. Where 'a' is a jquery object representing a div element, I have a.("#" + a.attr('id') + " .personal").text() in my code. I would expect that this would return only the text of the descendant node with the class "personal," but I

[jQuery] $.("anc desc").text() returns all text, not descendant

2008-06-17 Thread mkn
Hi all, Feel free to refer me to a FAQ if I've missed one. Where 'a' is a jquery object representing a div element, I have a.("#" + a.attr('id') + " .personal").text() in my code. I would expect that this would return only the text of the descendant node with the class "personal," but I

[jQuery] Help fading images with jquery.

2008-06-17 Thread Jordbrill
Hey guys, im brand new to jquery, but have used other javascript frameworks like mootools before. all im trying to do is come up with a good way to fade images in and out. for example image 1.jpg image 2.jpg image 3.jpg would fade the above images in and out between each other

[jQuery] Cycle Plugin - Change Slides and Pause on Hover (existing Pager)

2008-06-17 Thread j_sico
Is it possible to both change slides and pause the running slideshow onmouseover with existing markup used as a pager? I tried to add a "pause" action before running the slideshow, but that seems to break the whole thing. Here's my code: $('#front-image').cycle({ speed: 1,

[jQuery] Re: bug in jquery.form.js / function cb()

2008-06-17 Thread Mike Alsup
> Fixed. 1.3 won't break the present version of jQuery.Form. To clarify, nothing is broken in released code. v1.2.6 works fine. The changeset was destined for 1.3 and has already been fixed by Ariel (thanks, Ariel!) Mike

[jQuery] Re: bug in jquery.form.js / function cb()

2008-06-17 Thread Ariel Flesler
Fixed. 1.3 won't break the present version of jQuery.Form. Thanks for catching. -- Ariel Flesler http://flesler.blogspot.com/ On 17 jun, 13:12, Fil <[EMAIL PROTECTED]> wrote: > Hello, > > (sorry for posting to jquery-dev first) > > I was trying file uploads with the current jquery.js and > jque

[jQuery] [validate] dynamic form question

2008-06-17 Thread Matt
Hi Jorn and all, I had a question about the validation plugin. I'm hoping to integrate the plugin into a page where I am also using the treeview plugin to display a dynamic JSON form. Essentially the form's shape is completely dynamic, so I use livequery to add/remove elements. If I want to valid

[jQuery] Re: hover flickering, snow storm pixels on JPGs (beginner problem)

2008-06-17 Thread tlob
I just found out this one: http://www.alexjudd.com/?p=5 THANK YOU MICROSOFT argh On Jun 17, 10:48 pm, "Andy Matthews" <[EMAIL PROTECTED]> wrote: > Ooops... > > I spoke too soon. When I click on an image from the list above, THEN I get > the white dots. Interesting that each image's d

[jQuery] Re: bug in jquery.form.js / function cb()

2008-06-17 Thread Ariel Flesler
I know. Mike needs to handle that on the plugin. Cheers On 6/17/08, Fil <[EMAIL PROTECTED]> wrote: > > > > I assigned the ticket to Mike Alsup, now we need to wait till he > > checks it. > >> Ticket created @http://dev.jquery.com/ticket/3052 > > In fact as Renato found out it is this changeset t

[jQuery] Re: hover flickering, snow storm pixels on JPGs (beginner problem)

2008-06-17 Thread Andy Matthews
Ooops... I spoke too soon. When I click on an image from the list above, THEN I get the white dots. Interesting that each image's dots are always in the same place. For example, in gallery 1, if I click on the black/white image of the man, then click back to the first image, the dots I see are in

[jQuery] Re: jQuery version

2008-06-17 Thread Pablo Lillia
I respond myself: jQuery.jquery or maybe $.jquery (I only test the first form). Byes, Gorlok 2008/6/17 gorlok <[EMAIL PROTECTED]>: > > Hi, > I'm looking for jQuery().version() or something similar. I want to > verify what version of jQuery is installed. > > Thanks in advance! > > PD: I'm using jQ

[jQuery] Adding the dialog function dynamically to each li element

2008-06-17 Thread Dan
I have a list like: TITLE and I want to add the content "Open" after TITLE in the h3 tags that will open a dialog corresponding to this li, but do this to every other element just like it. $(".editable").each(function(){ //get each editable li element var title = $(this h3).val(); //get

[jQuery] Re: bug in jquery.form.js / function cb()

2008-06-17 Thread Fil
> I assigned the ticket to Mike Alsup, now we need to wait till he > checks it. >> Ticket created @http://dev.jquery.com/ticket/3052 In fact as Renato found out it is this changeset that breaks the file upload in jquery.form.js: http://dev.jquery.com/changeset/5714 -- Fil

[jQuery] Re: Autocomplete: Multi-dim JSON array and Custom format

2008-06-17 Thread Adam
Ok, that's a great article but not exactly what I need. I don't need to modify the results of the select (yet) but I need to modify the output of the results: a mulit-dimensional array that would need to be looped and shown. It might require a whole script entirely, but there's just too much good

[jQuery] Re: Autocomplete: Multi-dim JSON array and Custom format

2008-06-17 Thread Adam
I'm using Jorn's autocomplete ver 1.0.1. I'll check out your article and let you know if it points me in the right direction, thanks. On Jun 17, 2:59 pm, Shawn <[EMAIL PROTECTED]> wrote: > Which autocomplete are you using?  Which version? > > Not meaning to do a shameless plug, but I wrote a blog

[jQuery] Re: hover flickering, snow storm pixels on JPGs (beginner problem)

2008-06-17 Thread Andy Matthews
Oh wow... I didn't see anything like that, and I've got the same IE version as you. When that (or another picture with the same issue) picture appears, click on the open window and hit CTRL + A and see what happens. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROT

[jQuery] Re: hover flickering, snow storm pixels on JPGs (beginner problem)

2008-06-17 Thread tlob
http://vum.ch/thomas/ie7siggi.jpg On Jun 17, 10:31 pm, "Andy Matthews" <[EMAIL PROTECTED]> wrote: > I'm looking at it in IE7 and I'm not seeing any of these white pixels you're > mentioning. Can you confirm the version of IE you're using? > > -Original Message- > From: jquery-en@googlegro

[jQuery] Re: Please review work with JQuery

2008-06-17 Thread Samyak Bhuta
Thanks Rajesh, I will check this out for sure ... Will it help in SEO front ? Samyak On Tue, Jun 17, 2008 at 4:53 PM, R. Rajesh Jeba Anbiah <[EMAIL PROTECTED]> wrote: > > > On Jun 17, 4:11 pm, "Samyak Bhuta" <[EMAIL PROTECTED]> wrote: > > Thanks Rajesh, > > > > Unobtrusiveness was in mind, ac

[jQuery] Re: hover flickering, snow storm pixels on JPGs (beginner problem)

2008-06-17 Thread Andy Matthews
I'm looking at it in IE7 and I'm not seeing any of these white pixels you're mentioning. Can you confirm the version of IE you're using? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tlob Sent: Tuesday, June 17, 2008 3:21 PM To: jQuery (Englis

[jQuery] hover flickering, snow storm pixels on JPGs (beginner problem)

2008-06-17 Thread tlob
Hello I try to implement the cycle Plugin. Pretty successful so far. Two things are strange: -The hover function over the main Image, behaves strangely in IE. It's more flickering than hovering. -And some of the Images have strange white pixels on it. Also only in IE. Take a look: http://siggibu

[jQuery] Re: passing 0 to html() doesn't work like it does for other numbers

2008-06-17 Thread Ariel Flesler
Fixed http://dev.jquery.com/ticket/3053 Thanks -- Ariel Flesler http://flesler.blogspot.com/ On 17 jun, 00:57, "Morgan Allen" <[EMAIL PROTECTED]> wrote: > This has to do with the way JS evaluates true and false with 0. !0 == true. > The simple fix is passing String(0), line 964 (in current svn)

[jQuery] Re: bug in jquery.form.js / function cb()

2008-06-17 Thread Ariel Flesler
I assigned the ticket to Mike Alsup, now we need to wait till he checks it. Cheers -- Ariel Flesler http://flesler.blogspot.com/ On 17 jun, 13:12, Fil <[EMAIL PROTECTED]> wrote: > Hello, > > (sorry for posting to jquery-dev first) > > I was trying file uploads with the current jquery.js and > j

[jQuery] Re: Looking for help with a small jquery project by a noob

2008-06-17 Thread Ariel Flesler
$(document).ready(function(){ var $checks = $("input[name=myradiobutton]"), $field = $("#txtfld"); $checks.click(function(){ var value = $checks.filter(':checked').attr('value'); $field[ value == "r2" ? "show" : "hide" ](); }); }); The change event works oddly on IE, so this sh

[jQuery] Re: Autocomplete: Multi-dim JSON array and Custom format

2008-06-17 Thread Shawn
Which autocomplete are you using? Which version? Not meaning to do a shameless plug, but I wrote a blog article that covered using database IDs with Jorn's autocomplete. http://grover.open2space.com/node/190 This was back in December, so might be a little dated. But I believe what you are

[jQuery] detecting old browsers that can't use jQuery

2008-06-17 Thread cfdvlpr
I found an old thread here that has some code that looks pretty good: http://groups.google.com/group/jquery-en/browse_thread/thread/8b53e26326c14e87/37f11594475d5640?lnk=gst&q=browsers+compatible#37f11594475d5640 Is anyone else using code like this? Can anyone confirm how well this code works?

[jQuery] Re: Looking for help with a small jquery project by a noob

2008-06-17 Thread The Gorf
Does anyone have any input on this please? It would be very helpful. I'm still very stuck. -Geoff On Jun 13, 5:48 pm, The Gorf <[EMAIL PROTECTED]> wrote: > Greetings all. I am trying to add some jquery code to a few modules I > am developing in Drupal 5.x. I'm struggling to get up to speed wi

[jQuery] bug in jquery.form.js / function cb()

2008-06-17 Thread Fil
Hello, (sorry for posting to jquery-dev first) I was trying file uploads with the current jquery.js and jquery.form.js, and file upload in form.js fails (FF3/Mac); I located the problem in function cb() where $.httpData is called with two arguments only. A quick patch is to add a third argument

[jQuery] Re: Which grid?

2008-06-17 Thread Ken Gregg
I was using Rico but dropped it for lack of development activity. Everything but the grid is available in jquery. I would love to see the dynamic data part of the grid incorporated into flexigrid. Think that would make a great combination. http://sourceforge.net/project/showfiles.php?group_id=140

[jQuery] Re: SproutCore vs jQuery? Are there any comparisons out there?

2008-06-17 Thread Javier Martínez Fernández
But the demos are slw, even in Safari. El 17/06/2008, a las 18:57, Josh Nathanson escribió: > > On the SproutCore site, it talks about it being a complete MVC type > framework. This is a different approach than jQuery. It reminded > me a bit of Spry. > > The SproutCore guy did a p

[jQuery] problem with selector

2008-06-17 Thread jokin
In going through the 'Learning jQuery' book, I did some experimenting with the content of 'Chapter 1/alice.html'. Specifically, I have this selector and statement... $(document).ready(function() { $('.poem-stanza > div:eq(1)').addClass('blue_txt'); }); The problem is that when this is applied on

[jQuery] Autocomplete: Custom output, multi-dim JSON array

2008-06-17 Thread Adam
Hi Jörn (and whomever else) I'm trying to do something a little more complex with the Autocomplete plugin. I want to return a Spotlight-like result, so I have a multi- dimensional JSON array being returned, something like this: {"names":[ list of names here ], "emails":[ list of emails here ]}

[jQuery] Re: SproutCore vs jQuery? Are there any comparisons out there?

2008-06-17 Thread Priest, James (NIH/NIEHS) [C]
If you look at their site - it seems it's much more focused on building actual applications. Looking interesting for sure but not sure if a direct comparison with jQuery or the other JS libraries can be made. http://www.sproutcore.com/documentation/getting-started/ Jim > -Original Message-

[jQuery] Autocomplete: Multi-dim JSON array and Custom format

2008-06-17 Thread Adam
Tried to post this question once before but didn't seem to work... I'm needing to get a multi-dim JSON array to work for my autocomplete, in an effort to mimic the Spotlight design. My JSON currently looks like this: [ {"key":"names", "values":[ bunch of values]}, {"key":"emails","values": [ bu

[jQuery] Re: Layout manager

2008-06-17 Thread Jquery user - z
in jqueryUI, you com find something called splitpane in the dir jquery.ui-1.5\demos\real-world\splitpane\index.html

[jQuery] XML facebox issues, any support would be greatly appreciated

2008-06-17 Thread churock
Here is my issue. I am dynamically generating XML data that is to appear in the facebox as a means of displaying additional information about a product if so desired by the customer. My problem is this: I have set up the various etc., etc., which break down the xml data into divs and text tag

[jQuery] Re: SproutCore vs jQuery? Are there any comparisons out there?

2008-06-17 Thread mmw
for me sproutCore Framwork is the middle-age, prototyping everything that's what I did before jQuery + a lot of bugs regarding controls, maybe sproutcore is nicer regarding the look and feel framework and offers some facilities for including images but that's the case with jQuery + the MVC is not

[jQuery] jQuery version

2008-06-17 Thread gorlok
Hi, I'm looking for jQuery().version() or something similar. I want to verify what version of jQuery is installed. Thanks in advance! PD: I'm using jQuery as included in JBoss Richfaces / SEAM.

[jQuery] Re: SproutCore vs jQuery? Are there any comparisons out there?

2008-06-17 Thread Josh Nathanson
On the SproutCore site, it talks about it being a complete MVC type framework. This is a different approach than jQuery. It reminded me a bit of Spry. The SproutCore guy did a presentation at the SF Javascript Meetup a couple of months ago, and it sounded pretty interesting. -- Josh ---

[jQuery] Re: SproutCore vs jQuery? Are there any comparisons out there?

2008-06-17 Thread Erik Beeson
I guess maybe it'll be cool eventually since Apple is apparently backing it? But from the demos so far, it looks extremely half-baked... --Erik On 6/17/08, Andy Matthews <[EMAIL PROTECTED]> wrote: > > Yeah...that's what I thought. I've never even heard of it before WWDC. > > > -Original M

[jQuery] Re: SproutCore vs jQuery? Are there any comparisons out there?

2008-06-17 Thread Andy Matthews
Yeah...that's what I thought. I've never even heard of it before WWDC. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Tuesday, June 17, 2008 10:29 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: SproutCore vs jQuery? Are

[jQuery] Re: SproutCore vs jQuery? Are there any comparisons out there?

2008-06-17 Thread Rey Bango
There are no comparisons out at the moment. While SproutCore has recently received a lot of press, it's been completely out of the limelight otherwise. Rey... Andy Matthews wrote: I'm looking for comparisons between the newly popular JS library SproutCore and our own favorite, jQuery. Mos

[jQuery] Re: ANNOUNCE: black'n'white 1.0

2008-06-17 Thread Andy Matthews
Fair enough, a joke's a joke. There are better ways to get people to switch browsers than making the page function, or look differently, just because the user has IE. Do you have a demo of this plugin in action? The only thing you've got on your site (which looks very nice by the way) is a link t

[jQuery] Re: ANNOUNCE: black'n'white 1.0

2008-06-17 Thread Massimiliano Balestrieri
I understand your point but my plugin shouldn't be taken too seriously. It's something between a joke, a quick hack and a funny "tribute" to this Firefox day... and, by the way, customers pay me everyday to write workaround for IE so I think they won't find me less professional for this little plu

[jQuery] SproutCore vs jQuery? Are there any comparisons out there?

2008-06-17 Thread Andy Matthews
I'm looking for comparisons between the newly popular JS library SproutCore and our own favorite, jQuery. Mostly I'm looking for feature comparisons in the area of data binding and UI. SproutCore's got to be good if Apple decided to use it for their recerntly announced MobileMe online app. But

[jQuery] Re: ANNOUNCE: black'n'white 1.0

2008-06-17 Thread Andy Matthews
That's a fairly amusing, but ultimately worthless plugin to write. IE isn't going away, it's still the dominant browser, and will be for years to come. While IE6 is showing it's age (it IS over 6 years old after all), IE7 is quite good, and is very similar in rendering to FF or Safari. I unde

[jQuery] Re: CYCLE PLUGIN -- Creating a Realtime Status/Progress Bar

2008-06-17 Thread Joe
No takers on this? On Jun 16, 8:29 am, Joe <[EMAIL PROTECTED]> wrote: > I am using Mike Alsup's Cycle Plugin, but am running into a snag. > Here is what I'm trying to accomplish: > > I have 4 tags each with an image inside that is a link to that > image: > > >

[jQuery] Re: XML parsererror?? Where's the problem?

2008-06-17 Thread Mike Alsup
> The problem is that the javascript never reaches the success function > and stays stuck @ the function error, printing out the XML response > correctly and alerting me with the "parsererror" message ( the type > variable of error: function(request, type) ) > Where's the problem? What do i have

[jQuery] ANNOUNCE: black'n'white 1.0

2008-06-17 Thread Massimiliano Balestrieri
This plugin is a tribute to the "Firefox Download Day 2008". This plugin helps people moving away from Internet Explorer turning the colors of your website to a grayscaled version (using a property of Explorer itself!). It was written from an idea of Andy Clarke and with suggest of Simone Parato

[jQuery] li:gt(...) keeps counting to the next list

2008-06-17 Thread Panos
Using two ul lists: alpha beta gamma delta In jQuery, I am trying to select all li's *except* the first one: $("ul li:gt(0)").hide(); and then on hover, reveal them: $("ul:first-child").hover( function() { $("#prefer

[jQuery] Re: Layout manager

2008-06-17 Thread Stefan Sturm
Hello, > > During my search for a layout manager as the extjs, I came across with > this http://www.seprol.com.br/test/layout/page2.htm, (dependent on > mootools) i would like to know if is possible to convert to jquery, > with all the options, since the layout currently in jqueryUI, still > lack

[jQuery] li:gt(...) keeps counting to the next list

2008-06-17 Thread Panos
Using two ul lists: alpha beta gamma delta In jQuery, I am trying to select all li's *except* the first one: $("ul li:gt(0)").hide(); and then on hover, reveal them: $("ul:first-child").hover( function() { $("#prefer

[jQuery] Re: imageAreaSelect bug

2008-06-17 Thread webmotionuk
Try this instead: $(document).ready(function(){ $('#asdf').slideDown('slow'); $('#asdf img').imgAreaSelect({ maxWidth: 20, maxHeight: 20 }); }); The imageareaselect will be called after the image is loaded, You could even put this into a click function as fo

[jQuery] Looking for JQuery advanced selectbox

2008-06-17 Thread Drongo
Hi, I'm looking for JQuery plugin that can allow me add images to html select element. Actually, I want to implement select box for choosing languages with flag for each language. Thanks in advance.

[jQuery] XML parsererror?? Where's the problem?

2008-06-17 Thread mfonz85
Hi all, greets for the useful group about jQuery. I'm in needing of a little help, because I'm stuck at an endless point. I've created a little search script using jquery, that asks a page for an xml (based on the query) and prints out some params on the html parent page. Here's the code: ::: sea

[jQuery] Re: Is there a way to use the css function with $(document) directly?

2008-06-17 Thread Ariel Flesler
There is a plugin for that, it's called Rule: http://flesler.blogspot.com/2007/11/jqueryrule.html Cheers -- Ariel Flesler http://flesler.blogspot.com On 16 jun, 05:32, Olaf Bosch <[EMAIL PROTECTED]> wrote: > Brian J. Fink schrieb: > > > $(document).css(selector1,rule1).css(selector2,rule2)...cs

[jQuery] Re: How to clone jQuery object?

2008-06-17 Thread Ariel Flesler
$D.fn = $D.prototype; Cheers -- Ariel Flesler http://flesler.blogspot.com On 17 jun, 03:54, "R. Rajesh Jeba Anbiah" <[EMAIL PROTECTED]> wrote: > On May 25, 2:48 am, "R. Rajesh Jeba Anbiah" > > > > > > <[EMAIL PROTECTED]> wrote: > > I want to clone the jQuery object $ to $D; but it actually seems

[jQuery] Re: Combining other plugins with Intercept

2008-06-17 Thread Ariel Flesler
Ah.. one more thing... Instead of $(document).intercept (or listen) you can simply use $.intercept. Cheers -- Ariel Flesler http://flesler.blogspot.com On 17 jun, 04:03, Lion29 <[EMAIL PROTECTED]> wrote: > Hello! > > I have recently discovered the beauty of event delegation and the best > optio

[jQuery] Re: Combining other plugins with Intercept

2008-06-17 Thread Ariel Flesler
Not related to the topic, but Intercept will work faster if you replace: "a.thickbox, area.thickbox, input.thickbox" --> ".thickbox" It won't be doing a search, but a filter, so the more you specify, worse perfomance you'll get. As for the plugins... I doubt plugin owners will actually make on

[jQuery] Re: can I reload page through jQuery?

2008-06-17 Thread Ariel Flesler
location.reload(); Cheers -- Ariel Flesler http://flesler.blogspot.com On 17 jun, 07:43, mtest <[EMAIL PROTECTED]> wrote: > can I do like as something that: > $('#ReloadButton').click(function() { >     $(document).reload(); > > }); > > But this move don't work:) > How can i do this action - "re

[jQuery] Re: passing 0 to html() doesn't work like it does for other numbers

2008-06-17 Thread Ariel Flesler
> I have noticed another really strange bug(?) here, numbers with a leading > zero come out wrong. like 0123 ends up as 83. Stranger yet, 18 is 18, 19 is > 19 but 20 is 16? But it does not appear to be jQuery. Leading zeros indicate the JS Interpreter that the number is octal, that is, base 8. Sa

[jQuery] Re: passing 0 to html() doesn't work like it does for other numbers

2008-06-17 Thread vincent voyer
If you just want to insert numbers try .text() instead of .html() ? On Jun 17, 5:57 am, "Morgan Allen" <[EMAIL PROTECTED]> wrote: > This has to do with the way JS evaluates true and false with 0. !0 == true. > The simple fix is passing String(0), line 964 (in current svn) is the > problem, if(!el

[jQuery] [site using jQuery] www.iwidgets.com

2008-06-17 Thread PragueExpat
Javascript widget builder for deployment to social sites uses jQuery - check out the public beta Thanks jQuery team for such a great library!

[jQuery] Re: Please review work with JQuery

2008-06-17 Thread R. Rajesh Jeba Anbiah
On Jun 17, 4:11 pm, "Samyak Bhuta" <[EMAIL PROTECTED]> wrote: > Thanks Rajesh, > > Unobtrusiveness was in mind, actually I am not even hiding it but loading it > with ajax call. Wanted to load as much less as I could at first place. You may use hijax as in tabs plugin. -- Email: rrjanbiah

[jQuery] Re: Please review work with JQuery

2008-06-17 Thread Samyak Bhuta
Thanks Rajesh, Unobtrusiveness was in mind, actually I am not even hiding it but loading it with ajax call. Wanted to load as much less as I could at first place. For the HTML code let me see. Regards, Samyak On Tue, Jun 17, 2008 at 4:08 PM, R. Rajesh Jeba Anbiah < [EMAIL PROTECTED]> wrote: >

[jQuery] Re: Which grid?

2008-06-17 Thread R. Rajesh Jeba Anbiah
On Jun 17, 2:23 pm, shapper <[EMAIL PROTECTED]> wrote: > This one:http://webplicity.net/flexigrid/ Thanks, but there is no live data loading like I mentioned above. -- Email: rrjanbiah-at-Y!comBlog: http://rajeshanbiah.blogspot.com/

[jQuery] Re: jQuery + Prototype on newest release (1.2.6)

2008-06-17 Thread Rey Bango
Great to hear Mike! :) Rey mike wrote: Thanks a lot. Removing the call method overwrite in effects.js (and clearing the cache) helped. Also, I found out that I was including the Prototype library AFTER the jQuery one (as part of a framework on some of my pages). This was causing unexpected b

[jQuery] Re: editable table + json

2008-06-17 Thread Aceman3000
Hi michal. Take a look at this one: http://trirand.com/jqgrid/jqgrid.html > Row Editing > Basic Example or Custom Example On Jun 16, 3:14 pm, maryspt <[EMAIL PROTECTED]> wrote: > Hi, > is there any jQuery plugin that would allow me to create dynamic table > based on JSON data set, with possibili

[jQuery] can I reload page through jQuery?

2008-06-17 Thread mtest
can I do like as something that: $('#ReloadButton').click(function() { $(document).reload(); }); But this move don't work:) How can i do this action - "reload page"?

[jQuery] Re: passing 0 to html() doesn't work like it does for other numbers

2008-06-17 Thread Morgan Allen
I have noticed another really strange bug(?) here, numbers with a leading zero come out wrong. like 0123 ends up as 83. Stranger yet, 18 is 18, 19 is 19 but 20 is 16? But it does not appear to be jQuery. On Mon, Jun 16, 2008 at 8:57 PM, Morgan Allen <[EMAIL PROTECTED]> wrote: > This has to do wit

[jQuery] Layout manager

2008-06-17 Thread Jquery user - z
During my search for a layout manager as the extjs, I came across with this http://www.seprol.com.br/test/layout/page2.htm, (dependent on mootools) i would like to know if is possible to convert to jquery, with all the options, since the layout currently in jqueryUI, still lacks some options. ( ou

  1   2   >