[jQuery] load won't post params

2007-01-15 Thread Guntur N. Sarwohadi
Hi all, I like using the load method a lot, and with jQuery 1.1, I've noticed that now it doesn't post the object params parameter to url. How should I use the params now? I've checked through firebug and usually (jQuery 1.0.4) it shows the post variables but now it doesn't (so no params sent).

[jQuery] Very long input text value and focus

2007-01-15 Thread Roberto Ortelli
Hello, I don't know how to do that in JS or in JQuery, here is the problem: Imagine 2 or 3 text fields of a form. A long value text is displayed in each field. The text is too long and when I put a focus on a field I did not see the cursor. How can I automatically display the end of the text when

Re: [jQuery] jQuery 1.1, Site, Docs, Surprise

2007-01-15 Thread Krzysztof FF
John Resig wrote: jQuery 1.1 has just been released, ... This is really a great thing. I am looking onto jQuery architecture, development and possibilities with great interest and admiration. John Resig wrote: ..., along with an overhaul of the site design, ... Some remarks to the

[jQuery] Update to 1.1 question

2007-01-15 Thread Olaf Bosch
Hi, thanks for 1.1, great I have the funktion changed to work in 1.1: $('textarea').each(function(i) { $(this).attr({ id: txtarea_'+i+' }) . and so on How i must given the dynamic i append to the ID? All what i do give me back i and not the the number! -- Viele Grüße, Olaf

Re: [jQuery] Update to 1.1 question

2007-01-15 Thread limodou
On 1/15/07, Olaf Bosch [EMAIL PROTECTED] wrote: Hi, thanks for 1.1, great I have the funktion changed to work in 1.1: $('textarea').each(function(i) { $(this).attr({ id: txtarea_'+i+' }) . and so on How i must given the dynamic i append to the ID? All what i do give me back

[jQuery] datePicker

2007-01-15 Thread Zach Shelton
I've only recently discovered jQuery, and I'm quite impressed. I'm going to be porting some code for an application that was developed without a js framework (I'm going to be using it in the next version of my CMS project http://lucidcms.net ). For the most part, I' think this is going to be

Re: [jQuery] Update to 1.1 question

2007-01-15 Thread Olaf Bosch
limodou schrieb: This is not associated with 1.1 version, you could: $('textarea').each(function(i) { $(this).attr('id', txtarea_+i) } Thanks works on perfect. I have to scroll on docs!!! ;) -- Viele Grüße, Olaf --- [EMAIL PROTECTED]

Re: [jQuery] jQuery 1.1, Site, Docs, Surprise

2007-01-15 Thread agent2026
Fantastic! I'm still pretty wet behind the ears here, but in just a few months of exploration with jQuery it's completely changed my approach to development. You all deserve an award, something with 'revolutionary' in the title :). Can't wait for the book! Dare I put my money on O'Reilly?

Re: [jQuery] [plugin] jdMenu - Finally Released!

2007-01-15 Thread agent2026
Looks good, but any link in the menus opens two tabs for me (duplicates) in FF2. Adam -- View this message in context: http://www.nabble.com/-plugin--jdMenu---Finally-Released%21-tf2967558.html#a8369520 Sent from the JQuery mailing list archive at Nabble.com.

[jQuery] The $( exp, jQuery ) syntax is not working in 1.1

2007-01-15 Thread Karl Rudd
Love the new site. Don't mind the cleaned up API but I've got quite a lot of code that uses the $( expr, jQuery ) syntax and now it's not working. I haven't had time to wade through the code but check the following (with Firebug): spanOutside/span div spanInside/span /div console.log(

Re: [jQuery] Very long input text value and focus

2007-01-15 Thread Alex Brem
Hi Roberto, I'm a bit in a hurry without much time for testing this but you can try to get and then again set the selection. Just use my plugin to accomplish this: http://laboratorium.0xab.cd/jquery/fieldselection/0.2.3-test/ If this doesn't work, try it like this: Get the selection range,

[jQuery] Update for jQuery 1.1 compatibility?

2007-01-15 Thread agent2026
I know 0.1.5 was supposed to make jCarousel compatible with jQuery 1.1a, but I just tried it with 1.1 and the prev/next links aren't showing up. Is there another update in the works? Adam -- View this message in context:

[jQuery] Interface 1.1

2007-01-15 Thread Stefan Petre
Hi, Paul and I, with help from many jQuery developers, put together a new release of Interface. It has a number of new features, new plugins, speed improvements, nice demos, and improved documentation (there's still a lot to improve there). If you would like to learn more about the 1.1

Re: [jQuery] New Plugin: jQuery Image Strip

2007-01-15 Thread Klaus Hartl
Matt Stith schrieb: It looks pretty cool, but its not very jQuery-like, he used inline javascript for the onchange of the field. E. He also uses inline styles and incorrect HTML. To me not the kind of a best-practice example again. -- Klaus

Re: [jQuery] Interface 1.1

2007-01-15 Thread Clodelio C. Delfino
Thanks Stefan and Paul, this is good news for interface users like me...cheers. cdelfino On 1/15/07, Stefan Petre [EMAIL PROTECTED] wrote: Hi, Paul and I, with help from many jQuery developers, put together a new release of Interface. It has a number of new features, new plugins, speed

Re: [jQuery] Interface 1.1

2007-01-15 Thread Edwin Martin
Stefan Petre wrote: Paul and I, with help from many jQuery developers, put together a new release of Interface. It has a number of new features, new plugins, speed improvements, nice demos, and improved documentation (there's still a lot to improve there). If you would like to learn more

Re: [jQuery] jQuery 1.1, Site, Docs, Surprise

2007-01-15 Thread Edwin Martin
John Resig wrrote: jQuery 1.1 has just been release, along with an overhaul of the site design, and the documentation; all tied together with a brand new surprise! Nice work! Two things: 1) On the documentation page, you'll find the word Licensing. Someone skimming the page might think

Re: [jQuery] jQuery 1.1, Site, Docs, Surprise

2007-01-15 Thread Edwin Martin
I wrote: I think you'll better use License or even better MIT/GLP Licensed or MIT and GLP Licensed or somethink like this. Ofcourse I ment GPL instead of GLP. Edwin ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Interface 1.1

2007-01-15 Thread David Duymelinck
Stefan Petre schreef: Hi, Paul and I, with help from many jQuery developers, put together a new release of Interface. It has a number of new features, new plugins, speed improvements, nice demos, great to see all those cool interface plugins you posted here are in the new release and i

Re: [jQuery] The $( exp, jQuery ) syntax is not working in 1.1

2007-01-15 Thread limodou
On 1/15/07, Karl Rudd [EMAIL PROTECTED] wrote: Love the new site. Don't mind the cleaned up API but I've got quite a lot of code that uses the $( expr, jQuery ) syntax and now it's not working. I haven't had time to wade through the code but check the following (with Firebug):

[jQuery] jQuery 1.1: trigger does not work for me

2007-01-15 Thread Klaus Hartl
With jQuery 1.1, trigger does not execute a click event on a checkbox I have attached before... Is it just me? -- Klaus ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] variable scope in .post

2007-01-15 Thread Dan Caragea
Hi, I have some problems setting a global variable from within the success() function inside a .post. Here is a simplified version of what I have: function addedit() { var lk_id=0; $.ajax({url:'ajax/my_script.php', type:'POST', dataType:'html',

Re: [jQuery] jQuery 1.1: trigger does not work for me

2007-01-15 Thread Klaus Hartl
Klaus Hartl schrieb: With jQuery 1.1, trigger does not execute a click event on a checkbox I have attached before... Is it just me? Hm, actually that's a problem of the new feature that click() will also trigger the click function for the checkbox. See here:

[jQuery] Form plugin didn't submit the name and value of the submit button that was clicked

2007-01-15 Thread yi huang
I've found a similar question here ( http://jquery.com/pipermail/discuss_jquery.com/2006-August/009469.html) . But it seems that it's still not resolved . -- http://codeplayer.blogspot.com/ ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] Form plugin didn't submit the name and value of the submit button that was clicked

2007-01-15 Thread Mike Alsup
You need to use ajaxForm() for that functionality. ajaxSubmit() will not do it. Mike On 1/15/07, yi huang [EMAIL PROTECTED] wrote: I've found a similar question here (http://jquery.com/pipermail/discuss_jquery.com/2006-August/009469.html) . But it seems that it's still not resolved . --

Re: [jQuery] jQuery 1.1: trigger does not work for me

2007-01-15 Thread Klaus Hartl
Klaus Hartl schrieb: Klaus Hartl schrieb: With jQuery 1.1, trigger does not execute a click event on a checkbox I have attached before... Is it just me? Hm, actually that's a problem of the new feature that click() will also trigger the click function for the checkbox. See here:

[jQuery] Drupal 5.0 released!!! Hear ye..hear ye...

2007-01-15 Thread Clodelio C. Delfino
http://drupal.org/drupal-5.0 excerpt: JavaScript library: the jQuery JavaScript library has been included in Drupal 5. All existing JavaScript in Drupal core has been converted to use it. Cool... c,) cdelfino ___ jQuery mailing list

Re: [jQuery] jQuery 1.1, Site, Docs, Surprise

2007-01-15 Thread Andy Matthews
Woohoo!!! The new site looks HOT! Well done team. This is one of those things that needed to be done to take jQuery's respect and appearance to the next level. andy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Resig Sent: Sunday, January 14,

Re: [jQuery] jQuery 1.1, Site, Docs, Surprise

2007-01-15 Thread Shane Graber - jQuery
Awesome! I may have to look at using some of these new features in an upcoming project. :) Not sure if this was noticed or not, but the Fisheye menu [1] doesn't degrade gracefully if javascript is disabled (tested in FF 1.5). Basically all of the images overlay one another and the menu becomes

Re: [jQuery] Interface 1.1

2007-01-15 Thread Miles Storey
I like the new demo layout but it might be wise to put some initial content in the demo window, pointing people to the links below. Also, I got an error on the selectables demo. When I click serialise (XP and FF2) it gives me, Error: a.get(0) has no properties Source File:

[jQuery] Announce: jQuery's Birthday and v1.1

2007-01-15 Thread Rey Bango
I think many have already heard about this but for those that haven't, I just wanted to let you know that jQuery officially turned 1 year old yesterday! Woohoo! To coincide with this, jQuery v1.1 has been officially released, the site has received an awesome facelift and the documentation is

Re: [jQuery] New Plugin: jQuery Image Strip

2007-01-15 Thread Rey Bango
As I mentioned to Matt, lets make sure to offer Joshua constructive criticism as well as a solution for improving the widget. I think it has a great look and feel to it so if there's some tweaking refactoring that needs to be done to make it more solid, then lets offer some guidance on it.

Re: [jQuery] beautiful jquery powered website to check !

2007-01-15 Thread Rey Bango
The newest release of Interface, which Stefan and Paul announced today, dramatically improves DnD performance. You can see a demo thats similar to what this new site is doing: http://interface.eyecon.ro/demos/sort.html http://interface.eyecon.ro/ Rey... Rafael Santos wrote: Well, it's not

Re: [jQuery] New Plugin: jQuery Image Strip

2007-01-15 Thread Andy Matthews
I think it's really well done. Don't let them get you down Joshua...great job. andy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Monday, January 15, 2007 8:54 AM To: jQuery Discussion. Subject: Re: [jQuery] New Plugin: jQuery Image

Re: [jQuery] Update for jQuery 1.1 compatibility?

2007-01-15 Thread agent2026
Sorry, maybe I jumped the gun a bit. Some further research - I had .jcarousel-prev, .jcarousel-next { display:none; ... } in my CSS. Can't for the life of me remember why, but I think this was the the standard setup wasn't it? Removing this style solved the issue, but I don't know if there is

Re: [jQuery] New Plugin: jQuery Image Strip

2007-01-15 Thread Mike Alsup
I think it's really well done. Don't let them get you down Joshua...great job. I agree. I think it looks quite nice. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] Is trigger workable in Safari!?

2007-01-15 Thread 沈志川 (Benx)
I tried, but not work! Here is my code snip: jQuery(#hello).blur(function() { //... some form validation code }); jQuery(#form).submit(function() { jQuery(#hello).trigger(blur); ... }); -- Best regards, 沈志川 (Benx) ___ jQuery mailing list

Re: [jQuery] beautiful jquery powered website to check !

2007-01-15 Thread Dan Eastwell
My only problem with this likeable and graphically interesting site, is there's absolutely no fallback without javascript, not even an unenhanced version with the option, say, of getting external content via hyperlinks. Not even managing the worst crime of usability: 'you must have javascript

[jQuery] A little help with a 1.0 to 1.1 conversion

2007-01-15 Thread agent2026
Hi all, Reading up on the new release, I'm interested in the new feature of being able to pass comma-separated lists of selectors to the .not filter. Can this be applied to values? For example, I would like to convert this: $([EMAIL PROTECTED]:not([EMAIL PROTECTED]/]):not([EMAIL

[jQuery] ANNOUNCE: AjaxCFC for jQuery Updated to jQuery v1.1

2007-01-15 Thread Rey Bango
AjaxCFC, arguably the most widely used Ajax/ColdFusion component library for the ColdFusion application server, has been updated to use jQuery v1.1, the latest release of the popular Ajax/JS library. Several updates have been done to logging, error trapping, security checks, constructor

Re: [jQuery] beautiful jquery powered website to check !

2007-01-15 Thread Rick Faircloth
Hi, Rey... Question from a newbie... Let's say I want to use the Accordion function of the Eyecon Interface series in a site. Would I need to reference the entire Interface library, or are the various effects and functions separate files that I can pick and choose? Just trying to understand

Re: [jQuery] beautiful jquery powered website to check !

2007-01-15 Thread Rick Faircloth
I noticed, too, that some of the Technical Demos on the interface.eyecon site don't seem to be working properly. For example, the Imagebox... when I click on a photo, it simply opens up a new page with the image displayed. Doesn't seem to be working... Rick -Original Message- From:

[jQuery] Dynamic tables

2007-01-15 Thread Timothy Bowler
Hi, Im using insertCell() and insertRow() to create a dynamic table then using .innerhtml to populate the cell - how can this be done using jquery? thanx -- ___ Timothy M Bowler BSc(Hons) MSc MIET | Senior Programmer Or Media Unit 5 Elm Court

Re: [jQuery] beautiful jquery powered website to check !

2007-01-15 Thread Rey Bango
Hi Rick! You definitely don't need to include the whole Interface lib into your app. You can just use the files that contain the effects that you need. There may some dependencies from other Interface files and of course, jQuery, but you definitely don't need to use all the files. Rey...

Re: [jQuery] beautiful jquery powered website to check !

2007-01-15 Thread Rey Bango
Thanks Rick. I know it just went up today and I'll make sure that Stefan and Paul know. Rey... Rick Faircloth wrote: I noticed, too, that some of the Technical Demos on the interface.eyecon site don't seem to be working properly. For example, the Imagebox... when I click on a photo, it

[jQuery] Speed of 1.0 code with compatibilty script?

2007-01-15 Thread Shane Graber - jQuery
Quick question regarding the compatibility script to allow 1.0 code to be used with the 1.1 release of jQuery: Does using the compatibility plugin reduce the speed increases realized with the 1.1 release? I couldn't seem to find out if this was the case or not in my searches of the release

Re: [jQuery] beautiful jquery powered website to check !

2007-01-15 Thread Stefan Petre
Hi Rick, I have to wait for John to wake up and talk to him, then I will get back on this. Stefa Rick Faircloth wrote: I noticed, too, that some of the Technical Demos on the interface.eyecon site don't seem to be working properly. For example, the Imagebox... when I click on a photo, it

Re: [jQuery] beautiful jquery powered website to check !

2007-01-15 Thread Stefan Petre
Rick, you can always download interface zip file and there you'll have all the plugins in separate files, compressed and uncompressed. Then all you have to do is to include 'iutil.js' first and then what ever do you need. Stefan Rick Faircloth wrote: Hi, Rey... Question from a newbie...

Re: [jQuery] Speed of 1.0 code with compatibilty script?

2007-01-15 Thread Dave Methvin
Does using the compatibility plugin reduce the speed increases realized with the 1.1 release? I doubt anyone has benchmarked it to give a definitive answer, but you should still get most of the benefit of the faster 1.1 selectors with 1.0x code. In other words, don't worry about speed issues

Re: [jQuery] Dynamic tables

2007-01-15 Thread Dave Methvin
Im using insertCell() and insertRow() to create a dynamic table then using .innerhtml to populate the cell - how can this be done using jquery? You can continue to call the DOM methods if you want: $(#mytable)[0].insertRow() Or you can just append the row: $(#mytable).append(trtdnew

[jQuery] .height(val) - what am I missing?

2007-01-15 Thread agent2026
All Im trying to do is set the height of a div (jQuery 1.1), but no go. What am I missing? script type=text/javascript !-- $(#myDiv).height(600); -- /script div id=myDiv style=border:1px solid #f00/div Preparing to feel dumb, Adam -- View this message in context:

Re: [jQuery] jQuery 1.1, Site, Docs, Surprise

2007-01-15 Thread Christopher Jordan
Great job, guys! My hat's off to all of the separate jQuery teams! This is such a tight and dedicated community of really bright folks, and this release with all of its improvements and surprises just further proves to me the strength and power of open source software and the open source

Re: [jQuery] Speed of 1.0 code with compatibilty script?

2007-01-15 Thread John Resig
The compatibility plugin does not effect the speed of the code. If you're running jQuery 1.1 + Plugin, then it'll still be the same fast 1.1 code running. --John On 1/15/07, Shane Graber - jQuery [EMAIL PROTECTED] wrote: Quick question regarding the compatibility script to allow 1.0 code to be

Re: [jQuery] beautiful jquery powered website to check !

2007-01-15 Thread Rick Faircloth
Great! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Monday, January 15, 2007 11:31 AM To: jQuery Discussion. Subject: Re: [jQuery] beautiful jquery powered website to check ! Thanks Rick. I know it just went up today and I'll make sure

Re: [jQuery] .height(val) - what am I missing?

2007-01-15 Thread John Resig
Hmm... I can't verify this. I popped open a test page and set the .height() and it worked just fine. Perhaps a more complete example is in order? --John On 1/15/07, agent2026 [EMAIL PROTECTED] wrote: All Im trying to do is set the height of a div (jQuery 1.1), but no go. What am I missing?

Re: [jQuery] beautiful jquery powered website to check !

2007-01-15 Thread Rick Faircloth
Thanks, Rey... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Monday, January 15, 2007 11:30 AM To: jQuery Discussion. Subject: Re: [jQuery] beautiful jquery powered website to check ! Hi Rick! You definitely don't need to include the

[jQuery] Trying to show/hide table row...

2007-01-15 Thread Rick Faircloth
Is it possible to show and hide a table row as it is a div? I work mostly with tables / rows / cells rather than div's and I've had a hard time making the code work on tables rows. Before I get into the code, I just want to make sure there's nothing specific about TR's that make them impossible

Re: [jQuery] beautiful jquery powered website to check !

2007-01-15 Thread Rick Faircloth
Thanks for the info, Stefan… nice apps you have there! Rick From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stefan Petre Sent: Monday, January 15, 2007 12:02 PM To: jQuery Discussion. Subject: Re: [jQuery] beautiful jquery powered website to check ! Rick, you can always

[jQuery] FaviconLinkMarker - last call

2007-01-15 Thread Olaf Bosch
Hi all, Now I really do not know any more further. It does not want to work. Check out: http://olaf-bosch.de/bugs/jquery/links5.html here are the check of Favicon exist in a function, the check do to late (works), after the JQuery script!!! http://olaf-bosch.de/bugs/jquery/links6.html here are

Re: [jQuery] Trying to show/hide table row...

2007-01-15 Thread Rafael Santos
Well ... i toggle the display property of tr though it seems to have i bug on firefox, because it doesn't get the colspan when it exist in a td child... but it works fine on IE... btw, i use the slideToggle effect. So if anyone knows a good way, please tell me too. 2007/1/15, Rick Faircloth

Re: [jQuery] jQuery 1.1: trigger does not work for me

2007-01-15 Thread John Resig
Unfortunately, different built-in trigger events behave differently. This may have been one that slipped through. Could you submit a bug report about this? http://jquery.com/dev/bugs/new/ --John On 1/15/07, Klaus Hartl [EMAIL PROTECTED] wrote: Klaus Hartl schrieb: Klaus Hartl schrieb: With

Re: [jQuery] Trying to show/hide table row...

2007-01-15 Thread Brandon Aaron
There has been a lot of talk and tests of trying to get this to work properly. I created some tests to see if changing the display property would solve the problem but unfortunately some of the browsers just don't allow opacity changes on some of the other display properties. Right now the best

Re: [jQuery] .height(val) - what am I missing?

2007-01-15 Thread Sam Collett
On 15/01/07, John Resig [EMAIL PROTECTED] wrote: Hmm... I can't verify this. I popped open a test page and set the .height() and it worked just fine. Perhaps a more complete example is in order? --John On 1/15/07, agent2026 [EMAIL PROTECTED] wrote: All Im trying to do is set the height

Re: [jQuery] datePicker

2007-01-15 Thread Jörn Zaefferer
Zach Shelton schrieb: The best I came up with was a plugin for Drupal that simply takes jscalendar and wraps it with jQuery (along with the Drupal jstools API). If there is nothing out there already, I may have to abandon the conversion effort, as I just don't have the time right now for

Re: [jQuery] Interface 1.1

2007-01-15 Thread Alex Cook
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stefan Petre Subject: [jQuery] Interface 1.1 Hi, Paul and I, with help from many jQuery developers, put together a new release of Interface. It has a number of new features, new plugins, speed improvements, nice demos, and improved

[jQuery] $.ajax call works with 1.04 but not with 1.1

2007-01-15 Thread Sasha Oros
Hi, Below ajax call works fine with jQuery 1.04 and returns sets multi-value to an input text field. But, when I try the same code with jQuery 1.1 it fails without any error (no error message, no result,... nothing happens). Not sure if I missed anything (regarding to upgrade changes), so any

Re: [jQuery] variable scope in .post

2007-01-15 Thread Jörn Zaefferer
Dan Caragea schrieb: Hi, I have some problems setting a global variable from within the success() function inside a .post. Here is a simplified version of what I have: function addedit() { var lk_id=0; $.ajax({url:'ajax/my_script.php', type:'POST',

Re: [jQuery] variable scope in .post

2007-01-15 Thread Ⓙⓐⓚⓔ
your code is close, but because ajax is ASYNCHRONOUS the var gets set after the alert is executed. normally you would do everything that deals with the lk_id inside the success function (or a function called from inside the success function) On 1/15/07, Dan Caragea [EMAIL PROTECTED] wrote: Hi,

[jQuery] $.ajax call works with 1.04 but not with 1.1

2007-01-15 Thread Sasha Oros
Hi, Below ajax call works fine with jQuery 1.04 and returns sets multi-value to an input text field. But, when I try the same code with jQuery 1.1 it fails without any error (no error message, no result,... nothing happens). Not sure if I missed anything (regarding to upgrade changes), so any

Re: [jQuery] load won't post params

2007-01-15 Thread Jörn Zaefferer
Guntur N. Sarwohadi schrieb: Hi all, I like using the load method a lot, and with jQuery 1.1, I've noticed that now it doesn't post the object params parameter to url. How should I use the params now? I've checked through firebug and usually (jQuery 1.0.4) it shows the post variables but

Re: [jQuery] Trying to show/hide table row...

2007-01-15 Thread James Thomas
It is possible to hide table rows, though I don't know about hiding them with animations. We hide them all the time and we just hide and show it - works fine. I haven't tried this since I switched to jquery (some of the old JS code is still there) but I don't think there'd be any problem here

Re: [jQuery] [plugin] jdMenu - Finally Released!

2007-01-15 Thread Jonathan Sharp
On 1/13/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Jonathan Sharp schrieb: I finally got around to finishing the pages and packaging the plugin last night. Enjoy! http://jdsharp.us/code/jQuery/plugins/jdMenu/ Great to see an update to this plugin! Have you considered or tried an event

Re: [jQuery] Mac OS X Widgets?

2007-01-15 Thread Subway
Hey, who needs Java and Flash as long as we have JS and the canvas element. :-) http://mindshareprojects.com/canvas/weaving.html Fredi Ⓙⓐⓚⓔ wrote: Jobs said javascript YES! http://pogue.blogs.nytimes.com/2007/01/13/ultimate-iphone-faqs-list-part-2/ On 1/11/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED]

Re: [jQuery] FaviconLinkMarker - last call

2007-01-15 Thread David
Olaf Bosch schreef: Hi all, Now I really do not know any more further. It does not want to work. Check out: http://olaf-bosch.de/bugs/jquery/links5.html here are the check of Favicon exist in a function, the check do to late (works), after the JQuery script!!!

Re: [jQuery] Interface 1.1

2007-01-15 Thread jason schleifer
very cool! glad to see an update, but I get a number of errors in linux on mozilla.. Draggables are very very slow.. in fact, they dont' drag.. they just sort of appear wherever I mouseup. The imagebox keeps blinking on and off.. every time it opens, it displays, and then closes adn displays

Re: [jQuery] Speed of 1.0 code with compatibilty script?

2007-01-15 Thread Shane Graber - jQuery
I've finished changing my code to reflect the API changes. However, I depend on Thickbox for images and I haven't seen an announcement stating that Thickbox has updated its code to reflect the 1.1 API. Anyone know if Thickbox has done this or that it is in the works? Shane On 1/15/07, Dave

Re: [jQuery] datePicker

2007-01-15 Thread Brandon Aaron
This is actually on my todo list as I know I will need it eventually. However, I have no for sure time line on when I would have something ready. -- Brandon Aaron On 1/15/07, Zach Shelton [EMAIL PROTECTED] wrote: I've only recently discovered jQuery, and I'm quite impressed. I'm going to be

[jQuery] Loading Flash on First Load in Session and Image After

2007-01-15 Thread Chris Scott
A friend of mine is designing a site and wants to show a Flash header on the first load of a page within a site during a visitor's session but then show an image on successive page loads in that session. Here's how I did it w/jQuery and the Flash and Cookie plugins:

Re: [jQuery] Trying to show/hide table row...

2007-01-15 Thread Rick Faircloth
I would like for a space to open between two rows and for the js row to appear between the two... perhaps slide down and slide up. Is that what you do? Rick -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of James Thomas Sent: Monday, January 15, 2007 2:43

Re: [jQuery] FaviconLinkMarker - last call

2007-01-15 Thread Olaf Bosch
David schrieb: i looked at the page and i saw -moz attributes where are they coming from? is saw them in firebug on FF2 and the dom add-on in IE7. -moz-background-inline-policy looks suspicious to me. I also have tried all the things that maybe could work but none of them did. No

Re: [jQuery] Interface 1.1

2007-01-15 Thread fullgarbage
Hello Stefan, Thanks for the great news. The interface plugin makes jQuery valuable. I've noticed this bugs however: 'Resizables' from the demo doesn't work for me in IE7. 'Slider' - the lower slider doesn't work (IE7 again). Monday, January 15, 2007, 1:25:03 PM, you wrote: Hi, Paul and I,

[jQuery] OT: Interesting Website Creation tool

2007-01-15 Thread Stephen Woodbridge
http://ajaxian.com/archives/weebly-online-website-creation-tool-using-ajax ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] what's the difference between document.getElementById('id') and $('#id') ?

2007-01-15 Thread Daniel McBrearty
ok, I got it. To access the element I need to access $('#id')[0] What confused me here is that I wasn't really clear what the jquery object actually is. I have looked through the various intro and tutorial material a few times, and managed to get the library to do some useful things, but I missed

Re: [jQuery] what's the difference between document.getElementById('id') and $('#id') ?

2007-01-15 Thread Daniel McBrearty
sorry ... not the smartest question. of course, one returns the element, one returns the jquery object. What I needed was $('#id').attr( { autocomplete : off } ); I still have a problem to set the focus though. There is no error shown for $('#id').focus(); but the focus is not set ... On

[jQuery] digg.com about jquery 1.1

2007-01-15 Thread Jörn Zaefferer
Hello folks, there are quite some comments about jQuery 1.1 on digg.com, in particular, some stuff about Prototype/jQuery and mootools/jQuery. For anyone who wants to participate on the discussion there: http://digg.com/programming/jQuery_1_1_Released Regards -- Jörn Zaefferer

Re: [jQuery] jQuery 1.1: trigger does not work for me

2007-01-15 Thread Klaus Hartl
John Resig schrieb: Unfortunately, different built-in trigger events behave differently. This may have been one that slipped through. Could you submit a bug report about this? http://jquery.com/dev/bugs/new/ http://jquery.com/dev/bugs/bug/815/ ___

[jQuery] jQuery and SourceForge.net

2007-01-15 Thread Laurent Yaish
I just noticed while browsing sourceforge.net that they are using jQuery and Thickbox. Yet another big site using the greatest js library out there... Congrats on 1.1 and keep up the good work! Laurent ___ jQuery mailing list discuss@jquery.com

[jQuery] .css, jQuery1.1

2007-01-15 Thread Bruce MacKay
Hello folks, I'm having difficulty understanding how .css is supposed to work. The following line of code correctly styles the font color of the json data within #tree as blue: $(#tree).highlightFade({color:'red',speed:2000,iterator:'sinusoidal'}).html(field.msg).css({color: blue});

Re: [jQuery] .css, jQuery1.1

2007-01-15 Thread John Resig
The problem is that JavaScript keywords/variables cannot contain a '-' in them. You have two options: .css({color: blue, fontSize: 1.2em, textAlign: left}); or: .css({color: blue, font-size: 1.2em, text-align: left}); --John On 1/15/07, Bruce MacKay [EMAIL PROTECTED] wrote: Hello folks,

[jQuery] jQuery addClass problems

2007-01-15 Thread Christopher Jordan
Hi folks, This problem probably stems from my lack of CSS knowledge, but I'm sure there's someone here who can help me. I'm trying to use .add/removeClass() to highlight and unhighlight cells in a calendar when hovered and change their color entirely when they're clicked, etc. I had this

Re: [jQuery] Is trigger workable in Safari!?

2007-01-15 Thread Jörn Zaefferer
沈志川 (Benx) schrieb: I tried, but not work! Here is my code snip: jQuery(#hello).blur(function() { //... some form validation code }); jQuery(#form).submit(function() { jQuery(#hello).trigger(blur); ... }); As a workaround, you could refactor your code a bit: function

Re: [jQuery] variable scope in .post

2007-01-15 Thread Dan Caragea
Man, that was easy! Thanks for help, it works like a charm now. Dan Ⓙⓐⓚⓔ wrote: your code is close, but because ajax is ASYNCHRONOUS the var gets set after the alert is executed. normally you would do everything that deals with the lk_id inside the success function (or a function called

Re: [jQuery] A little help with a 1.0 to 1.1 conversion

2007-01-15 Thread Jörn Zaefferer
agent2026 schrieb: Hi all, Reading up on the new release, I'm interested in the new feature of being able to pass comma-separated lists of selectors to the .not filter. Can this be applied to values? In that case, a custom filter would be a good choice. Something like this: $([EMAIL

Re: [jQuery] what's the difference betweendocument.getElementById('id') and $('#id') ?

2007-01-15 Thread Dave Methvin
$(function () { self.focus(); $(#userresponse).setAttribute(autocomplete,off); $(#userresponse).focus(); }); I would do this: $(function () { self.focus(); $(#userresponse).attr(autocomplete,off)[0].focus(); }); There isn't a setAttribute method on a

[jQuery] self.attr(innerHTML, res.responseText) - IE 7 failing

2007-01-15 Thread lukas | dressy vagabonds
hi everybody, just found out about jQuery 2 weeks ago, started to integrate it in a website of mine (heart.coffeeandrecords.com) about 2 days ago, and absolutely learned to love it!! it's the best and slimmest javascript library with the most elegant way of getting things done that i've

[jQuery] Preloading images in jcarousel

2007-01-15 Thread djl
Hi there, Firstly, thanks very much for jcarousel. I have an issue with using it - there's currently 103 images to load and this amount will grow over time. The problem I'm having is that I always need to display the 3 most recent images upon hitting the page - in this case, the start items need

Re: [jQuery] Trying to show/hide table row...

2007-01-15 Thread James Thomas
Yes, but it just appears, we haven't yet experimented with applying effects. We have always done this using plain old javascript, like: TO SHOW: document.getElementById('trShow').style.display = 'block'; TO HIDE: document.getElementById('trShow').style.display = 'none'; Could probably use

[jQuery] jquery1.1 and modalContent problem

2007-01-15 Thread Ámon Tamás
Hello, I try to upgrade my little project from jquery 1.04 to jquery 1.1 . (naturally with jquery.compat-1.0). And with modalContent I get the following error: $(#modalContent).top is not a function (line 83). I think this is a jquery.compat error. Isn't it? -- Ámon Tamás

Re: [jQuery] jQuery addClass problems

2007-01-15 Thread Olaf Bosch
Christopher Jordan schrieb: It's swapping out the text color, but not the background color. I'm puzzled. Is there some reason I could be seeing these sorts of results? Is this online, cane i see this? Have you so in the CSS? #tableID td{ background:#ccc; } this cane not overwritte with

Re: [jQuery] self.attr(innerHTML, res.responseText) - IE 7 failing

2007-01-15 Thread Mike Alsup
Hi Lucas, Issue 2: $(#el).load doesn't support post params any longer This is a bug and will be fixed. You can fix it in your own copy by editing this line in the load function: if ( jQuery.isFunction( params.constructor ) ) { Change it to this: if ( jQuery.isFunction( params ) ) { Issue

  1   2   >