[jQuery] Re: Sending POST params along with GET?

2007-05-19 Thread Crusty
By normally, I mean when it works, Firebug displays the POST tab info that way. OK, it turns out the problem was with my PHP code, not jQuery. The problem is now solved. I shall no longer doubt the powers of the almighty jQuery. Thanks for the help, Jörn. On May 18, 8:12 pm, Jörn Zaefferer

[jQuery] Re: jQuery PNG Fix

2007-05-19 Thread Devin Torres
Ah, yes, that seems like a really elegant solution. My problem was the massive amount of transparent PNGs my site was already using. Going back and applying a class to each image would be less counter-productive. I can see his implementation breaking in more ways than just traversing the DOM for

[jQuery] Re: Disabling Tooltips + Tooltip Text

2007-05-19 Thread DaveG
Jörn Zaefferer wrote: DaveG wrote: What I'd really like to do is maintain an array of tips, and selectors, and then iterate through that calling Tooltip. I can do that with the syntax above. No, that won't work. The bodyHandler is supposed to be a callback function that is called whenever

[jQuery] Re: jQuery PNG Fix

2007-05-19 Thread Klaus Hartl
Devin Torres wrote: Ah, yes, that seems like a really elegant solution. My problem was the massive amount of transparent PNGs my site was already using. Going back and applying a class to each image would be less counter-productive. I can see his implementation breaking in more ways than just

[jQuery] Interacting with an IFRAME

2007-05-19 Thread David
Hi there, I have a page that is pulled into an IFRAME. I would like to use jquery in the parent document, to interact with the document in the IFRAME, but I can't work out how to access that document. By using $(iframe) I can get the attributes of the iframe, but I can't seem to get at the

[jQuery] Re: Sending POST params along with GET?

2007-05-19 Thread Jörn Zaefferer
Crusty wrote: By normally, I mean when it works, Firebug displays the POST tab info that way. OK, it turns out the problem was with my PHP code, not jQuery. The problem is now solved. I shall no longer doubt the powers of the almighty jQuery. Thanks for the help, Jörn. Glad to be able to

[jQuery] Re: Disabling Tooltips + Tooltip Text

2007-05-19 Thread Jörn Zaefferer
DaveG wrote: Jörn Zaefferer wrote: DaveG wrote: What I'd really like to do is maintain an array of tips, and selectors, and then iterate through that calling Tooltip. I can do that with the syntax above. No, that won't work. The bodyHandler is supposed to be a callback function that is

[jQuery] Re: jQuery PNG Fix

2007-05-19 Thread Jörn Zaefferer
Devin wrote: This is a jQuery plugin I created to adapt pngfix.js from Bob Osola to use the jQuery framework. I guess you haven't seen this yet: http://khurshid.com/jquery/iepnghack/ While I still don't like the method-names, I like that it is able to fix both img-elements and

[jQuery] Fade background colour - my first attempt at a plugin.

2007-05-19 Thread Yansky
This is my first attempt at a plugin, so go easy on me. :) The plugin animates the background colour of an element. My code: http://pastebin.ca/raw/496686 I know there's already a feature in the interface plugin to animate the background colour of an element, but I wanted to have a go at

[jQuery] consume click event

2007-05-19 Thread oscar esp
I need to change click event for each click I have nex code: function collapseSection(ID_SECCION) { jQuery(#HS_+ID_SECCION).bind(click,function() {expandSection(ID_SECCION);return false;}); } function expandSection(ID_SECCION) { jQuery(#HS_+ID_SECCION).bind(click,function()

[jQuery] Re: Interacting with an IFRAME

2007-05-19 Thread Bil Corry
David wrote on 5/19/2007 3:27 AM: I have a page that is pulled into an IFRAME. I would like to use jquery in the parent document, to interact with the document in the IFRAME, but I can't work out how to access that document. By using $(iframe) I can get the attributes of the iframe, but I

[jQuery] Re: jquery.us

2007-05-19 Thread joomlafreak
Done dna done! On May 19, 11:22 am, jazzle [EMAIL PROTECTED] wrote: done++; // or done += 1; John Resig wrote: Well, that's just weird; definitely trying to make $ with adwords. This is the type of thing that you can ban a site for. Here's what everyone can do: 1) Go to the site

[jQuery] Re: jQuery PNG Fix

2007-05-19 Thread Toby
I think its time to get one-and-for-all png fix solution out the door, put it in the jQuery repository and on the plugin list. This would be a really useful asset to a lot of people I am sure and would help relieve developers/designers suffering due to IE6. I have had success with the

[jQuery] Re: jquery.us

2007-05-19 Thread spinnach
do, did, done.. joomlafreak wrote: Done dna done! On May 19, 11:22 am, jazzle [EMAIL PROTECTED] wrote: done++; // or done += 1; John Resig wrote: Well, that's just weird; definitely trying to make $ with adwords. This is the type of thing that you can ban a site for. Here's what

[jQuery] select does not hide() when within table with col

2007-05-19 Thread [EMAIL PROTECTED]
Hi, I'm using jquery to show/hide part of the form (i.e. section of the table) when checkbox is toggled. I had a problem with section containing select controls - section would hide, but selects would continue to float - only in IE (version 6.0), in FF everything's fine. After some

[jQuery] Re: jQuery PNG Fix

2007-05-19 Thread Toby
This is a jQuery plugin I created to adapt pngfix.js from Bob Osola to use the jQuery framework. Sorry forgot to mention nice1 adapting Bobs code, you noticed any performance increases? I've found using PNG techniques on more than a few IMG tags results in pages loading, then, images being

[jQuery] Re: jQuery PNG Fix

2007-05-19 Thread Glen Lipka
On 5/19/07, Toby [EMAIL PROTECTED] wrote: I think its time to get one-and-for-all png fix solution out the door, put it in the jQuery repository and on the plugin list. This would be a really useful asset to a lot of people I am sure and would help relieve developers/designers suffering due

[jQuery] Re: Disabling Tooltips + Tooltip Text

2007-05-19 Thread DaveG
I think my idea when asking for the data was if there is a link between elements and their tooltips that can be used to automate the association. You could have an object of key/value pairs, each key being the same as an ID or class on an element, and the value containing the value to

[jQuery] Re: jQuery PNG Fix

2007-05-19 Thread Devin Torres
I suppose a selector such as this is faster than injecting HTML, right? On 5/19/07, Klaus Hartl [EMAIL PROTECTED] wrote: Devin Torres wrote: Ah, yes, that seems like a really elegant solution. My problem was the massive amount of transparent PNGs my site was already using. Going back and

[jQuery] Re: jQuery PNG Fix

2007-05-19 Thread Brandon Aaron
On 5/19/07, Glen Lipka [EMAIL PROTECTED] wrote: Ok, so is there a single jQuery plugin to include? Im starting to get confused. :) Do these fixes fix the problem in IE using FadeIn() where it becomes black? Glen No single best-of plugin yet and no these do not fix the IE7 issues. :/ There

[jQuery] Re: select does not hide() when within table with col

2007-05-19 Thread Dan G. Switzer, II
tr col/col col/col /tr Maybe it was a typo, but col / tags are only supposed to be on colgroup / tags. - Dan

[jQuery] Re: Disabling Tooltips + Tooltip Text

2007-05-19 Thread DaveG
Just as an aside, the version of the tooltip library in the SVN repository (and the used as a download from your website) is 2.0 Alpha. This version does not work with your demo page. You might want to note that on the Tooltip pages. ~ ~ Dave DaveG wrote: I think my idea when asking

[jQuery] Debugging jQuery

2007-05-19 Thread Ⓙⓐⓚⓔ
over the months, I've re-written my debug library several times. I'm pretty happy with this one. based on code from all over the place! I hope you can all read the attached file. jquery.debug.js Description: JavaScript source

[jQuery] Re: Debugging jQuery

2007-05-19 Thread Alexandre Plennevaux
thanks jake, but i think it's better if you just post a link to a webpage documenting your library. Here, Outlook prevented access to your .js attachment. in any case, without docs, i'm lost :) _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sent:

[jQuery] Re: Debugging jQuery

2007-05-19 Thread Brandon Aaron
Looks great Jake. How about adding it to jQuery Plugins SVN? -- Brandon Aaron On 5/19/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: over the months, I've re-written my debug library several times. I'm pretty happy with this one. based on code from all over the place! I hope you can all read the attached

[jQuery] Re: Debugging jQuery

2007-05-19 Thread Ⓙⓐⓚⓔ
That was my goal, after I get feedback and make sure nobody has anything better!!! On 5/19/07, Brandon Aaron [EMAIL PROTECTED] wrote: Looks great Jake. How about adding it to jQuery Plugins SVN? -- Brandon Aaron On 5/19/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: over the months, I've re-written my

[jQuery] tip: jQueryify Bookmarklet

2007-05-19 Thread Erik Beeson
Hello jQuerians, Thought I'd share a neat little tip I use on a fairly regular basis. It's a bookmarklet that adds jQuery to the current page. Just make a bookmark with this URL: javascript:(function(){document.body.appendChild(document.createElement

[jQuery] Re: tip: jQueryify Bookmarklet

2007-05-19 Thread Karl Swedberg
Sure, or you could do the same from here: http://www.learningjquery.com/2006/12/jquerify-bookmarklet ;-) --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On May 19, 2007, at 11:50 PM, Erik Beeson wrote: Hello jQuerians, Thought I'd share a neat little

[jQuery] Re: jcarousel safari

2007-05-19 Thread [EMAIL PROTECTED]
Hey, yes i did try to fix the issue , its due to the reflection effect code, if the reflection code is comments out, it work little good in safari. yet still may not be perfect. On May 18, 8:38 pm, Tom Shafer [EMAIL PROTECTED] wrote: Anybody find a way to fix this? On May 17, 10:13 pm,