[jQuery] Problem with .load() in Firefox

2006-12-21 Thread David
Hi, I am trying to get some html content to load into a div when a hyperlink is clicked. The code I have is very simple and works perfectly in IE7, but no matter what I do I can't get Firefox to use the load() function. The code is below: HTML HEAD TITLE Document /TITLE script src=jquery-104.js

Re: [jQuery] jQuery powered shopping site

2006-12-21 Thread Michael Price
Hi all, Thanks for the excellent feedback, much appreciated :) Will see if I can do a bit more on it over Christmas based on what's been said in here. I'm bringing my main website, Cyberscore over to jQuery as well next year - I'll post again once it's launched. :) Season's greetings to all!

Re: [jQuery] jdNewsScroll - Headline Scroller

2006-12-21 Thread Sam Collett
On 20/12/06, Jonathan Sharp [EMAIL PROTECTED] wrote: Another Proof of Concept code. I'll be refactoring this into a plugin in the next week or so. http://jdsharp.us/code/jdNewsScroll/ Cheers, -js Not bad - only problem is items with two lines (second line gets cut off). The only solutions

Re: [jQuery] Problem with .load() in Firefox

2006-12-21 Thread Klaus Hartl
David schrieb: Hi, I am trying to get some html content to load into a div when a hyperlink is clicked. The code I have is very simple and works perfectly in IE7, but no matter what I do I can't get Firefox to use the load() function. The code is below: HTML HEAD TITLE Document

Re: [jQuery] xml response with $.get()

2006-12-21 Thread insq
Okay, let's leave that. Could someone point me in the right direction of parsing an XML file and displaying its content using Jquery, without php? Thanks in advance. -- View this message in context: http://www.nabble.com/xml-response-with-%24.get%28%29-tf2848454.html#a8006025 Sent from the

[jQuery] Problem with jq-corner.js and ie6

2006-12-21 Thread Matthieu BARBE
Hi, First, sorry for my bad english, i'm french. Thx for jquery, i love it :) I have a problem with jq-corner and ie6, the corners don't see (look this page for exemple : http://www.mes-anniversaires.com/anniversaires_du_jour-anniversaire-id-355-nom-Samuel_L_Jackson.html ) Firefox 1.5, 2 ok

Re: [jQuery] Problem with jq-corner.js and ie6

2006-12-21 Thread Mike Alsup
I have a problem with jq-corner and ie6, the corners don't see (look this page for exemple : That problem is a result of IE's hasLayout quirkiness. You can either give those divs layout or use the latest version of the corner plugin.

Re: [jQuery] Problem with .load() in Firefox

2006-12-21 Thread David
Thanks Klaus, much appreciated. Regards, David Klaus Hartl wrote: David schrieb: Hi, I am trying to get some html content to load into a div when a hyperlink is clicked. The code I have is very simple and works perfectly in IE7, but no matter what I do I can't get Firefox to use the

Re: [jQuery] Problem with jq-corner.js and ie6

2006-12-21 Thread Matthieu BARBE
Hi, i have change my version by this version ( http://jquery.com/dev/svn/trunk/plugins/corner/jquery.corner.js?format=txt) but i have similary problem. Thx mike for your help ! [EMAIL PROTECTED] 2006/12/21, Mike Alsup [EMAIL PROTECTED]: I have a problem with jq-corner and ie6, the

Re: [jQuery] Duplicating a row...

2006-12-21 Thread Brian Miller
This strikes me as a task where creating new elements may be less gremlin-prone than cloning. Michael Geary's Easy DOM Creation plugin might make it easier to write a function that creates the appropriate DOM tree branch. http://mg.to/2006/02/27/easy-dom-creation-for-jquery-and-prototype -

Re: [jQuery] [Interface Elements] onChange callback BROKEN is sortables

2006-12-21 Thread Roger Ineichen
Hi Paul Subject: Re: [jQuery] [Interface Elements] onChange callback BROKEN is sortables Hi Roger! Currently, there is not yet a definite roadmap for Interface. I am now in the process of creating a roadmap and restructuring Interface further on. Since Interface moved into SVN,

Re: [jQuery] Problem with jq-corner.js and ie6

2006-12-21 Thread Mike Alsup
i have change my version by this version (http://jquery.com/dev/svn/trunk/plugins/corner/jquery.corner.js?format=txt) but i have similary problem. Hi Matthieu, Sorry about that. I was thinking the latest version caused layout to be applied to the element automatically, but it does not. You

[jQuery] for each, bing, scope

2006-12-21 Thread jpl
Hello, I have a form with 5 checkboxes and 5 text inputs. Each checkbox is related to a text input. I want a checkbox to be checked when its related text input is clicked... easy with jquery: $(#text_input_id).click( function() { $(#checkbox_id).get(0).checked = true; } ); But I have a problem

Re: [jQuery] Trivial typo in docs

2006-12-21 Thread Sam Collett
On 20/12/06, Jörn Zaefferer [EMAIL PROTECTED] wrote: Erik Beeson schrieb: I found an error in the docs, and checked the SVN version to see if it had been fixed already. It had been, but while there, I found a trivial typo in the same area:

Re: [jQuery] Problem with jq-corner.js and ie6

2006-12-21 Thread Matthieu BARBE
Mike, are you my rescuer ? Thx for your patience ! Your astuce run with ie6 ! I add this element height:1%; ie6 and very strange ! Thx Matthieu 2006/12/21, Mike Alsup [EMAIL PROTECTED]: i have change my version by this version (

Re: [jQuery] for each, bing, scope

2006-12-21 Thread Klaus Hartl
jpl schrieb: Hello, I have a form with 5 checkboxes and 5 text inputs. Each checkbox is related to a text input. I want a checkbox to be checked when its related text input is clicked... easy with jquery: $(#text_input_id).click( function() { $(#checkbox_id).get(0).checked = true; }

Re: [jQuery] Duplicating a row...

2006-12-21 Thread andy
Quoting Brian Miller [EMAIL PROTECTED]: Interesting...VERY interesting. This strikes me as a task where creating new elements may be less gremlin-prone than cloning. Michael Geary's Easy DOM Creation plugin might make it easier to write a function that creates the appropriate DOM tree

Re: [jQuery] JQuery driven site

2006-12-21 Thread Christopher Jordan
Yeah, I hate those sort of errors as well. I'll check the site again today, from FF2.0.0.1 and let you know if I see different results. Cheers, Chris Stefan Holmberg wrote: the tabs in FF 2.0.0.1 is working for me. Oh man, I hate those type of errors...I will look into it more... Powered by

Re: [jQuery] logic help

2006-12-21 Thread bmsterling
Wow, I guess I should have paid attention in math class a little more. I am liking the idea of allowing the user to adjust his/her points, seems to be the simplest. But ulimately I have to see what the client prefers, and I can bet he will want me to do the other option of finding the center

Re: [jQuery] for each, bing, scope

2006-12-21 Thread Sam Collett
On 21/12/06, Klaus Hartl [EMAIL PROTECTED] wrote: jpl schrieb: Hello, I have a form with 5 checkboxes and 5 text inputs. Each checkbox is related to a text input. I want a checkbox to be checked when its related text input is clicked... easy with jquery:

Re: [jQuery] for each, bing, scope

2006-12-21 Thread Klaus Hartl
Sam Collett schrieb: Can't you cut the amount of code down even further (you don't need to use each, then focus)? $(function() { $('#my-form [EMAIL PROTECTED]text]').focus(function() { $(this).prev('input:eq(0)').attr('checked',true); }); }); Aah, thanks Sam! Nice!

Re: [jQuery] Duplicating a row...

2006-12-21 Thread Jörn Zaefferer
[EMAIL PROTECTED] schrieb: Interesting...VERY interesting. Don't forget to look at the approach posted by Olsow in the comments: http://mg.to/2006/02/27/easy-dom-creation-for-jquery-and-prototype#comment-176 -- Jörn Zaefferer http://bassistance.de

Re: [jQuery] jdNewsScroll - Headline Scroller

2006-12-21 Thread Karl Swedberg
On Dec 21, 2006, at 11:52 AM, Jonathan Sharp wrote: Not bad - only problem is items with two lines (second line gets cut off). The only solutions to that may ruin the effect though. Increasing the height to allow room for the second line would mean extra whitespace when there is only one line

Re: [jQuery] Duplicating a row...

2006-12-21 Thread Alex Cook
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jörn Zaefferer Subject: Re: [jQuery] Duplicating a row... [EMAIL PROTECTED] schrieb: Interesting...VERY interesting. Don't forget to look at the approach posted by Olsow in the comments:

Re: [jQuery] jdNewsScroll - Headline Scroller

2006-12-21 Thread Sam Collett
On 21/12/06, Jonathan Sharp [EMAIL PROTECTED] wrote: On 12/21/06, Sam Collett [EMAIL PROTECTED] wrote: On 20/12/06, Jonathan Sharp [EMAIL PROTECTED] wrote: Another Proof of Concept code. I'll be refactoring this into a plugin in the next week or so.

Re: [jQuery] Little Bug

2006-12-21 Thread AKB
I will try to send another email to the author about this issue, because last two just came rejected Your mod works like a charm, Big Thank You ! -- View this message in context:

[jQuery] Problem redefining $ with merge function

2006-12-21 Thread flyingpylon
I discovered jQuery via Cody Lindley's Thickbox script and will warn everyone that I have only a very basic understanding of javascript (despite several years' worth of ASP, PHP, etc). That said, I'm running into a problem using jQuery 1.0.4 with other scripts that use the Prototype library.

Re: [jQuery] Problem redefining $ with merge function

2006-12-21 Thread John Resig
Yes, that was a regression inbetween versions, and the change that you made was the correct one. I've already fixed this locally and will be pushing it to SVN very soon. --John On 12/21/06, flyingpylon [EMAIL PROTECTED] wrote: I discovered jQuery via Cody Lindley's Thickbox script and will

Re: [jQuery] JQuery driven site

2006-12-21 Thread Rey Bango
Hi Stefan. Good point. I emailed John about it. I'll see what I can do to make that more obvious. Thanks for the feedback. Rey... Powered by JQuery logo: yes I am using it - on the About page (I will update the acknowledgement list also later - lots of you have been great help...). However

Re: [jQuery] typeWritr - WAS jdNewsScroll - Headline Scroller

2006-12-21 Thread Alex Cook
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sam Collett Subject: Re: [jQuery] jdNewsScroll - Headline Scroller What I want to know is how to do a typewriter effect (i.e. type from right to left single letters until the entire text is written). - I do like a challenge :)

[jQuery] [evangelism] editable jQuery examples blog post

2006-12-21 Thread bander
If you'll excuse my tooting my own horn, I just made a blog post that I think is neat. http://bluej100.blogspot.com/2006/12/jquery-css-style-javascripting.html As I mention in the post, I wrote the following script for my blog: $(document).ready(function() { $('form.jqExample')

Re: [jQuery] typeWritr - WAS jdNewsScroll - Headline Scroller

2006-12-21 Thread Sam Collett
On 21/12/06, Alex Cook [EMAIL PROTECTED] wrote: From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sam Collett Subject: Re: [jQuery] jdNewsScroll - Headline Scroller What I want to know is how to do a typewriter effect (i.e. type from right to left single letters until the entire

Re: [jQuery] typeWritr - WAS jdNewsScroll - Headline Scroller

2006-12-21 Thread Alex Cook
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sam Collett Subject: Re: [jQuery] typeWritr - WAS jdNewsScroll - Headline Scroller On 21/12/06, Alex Cook [EMAIL PROTECTED] wrote: Hope this steers you in the right direction. -ALEX Seems to work OK, but does not handle elements

Re: [jQuery] typeWritr - WAS jdNewsScroll - Headline Scroller

2006-12-21 Thread Sam Collett
Cleaned it up a bit (didn't need to loop through attributes) - see below. Still doesn't work in IE though. On 21/12/06, Sam Collett [EMAIL PROTECTED] wrote: else if(node.childNodes[i].nodeType == 1) { attr

Re: [jQuery] Problem with jq-corner.js and ie6

2006-12-21 Thread Mike Alsup
For the record, *now* the latest version applies layout automatically in IE! http://jquery.com/dev/svn/trunk/plugins/corner/jquery.corner.js?format=txt Mike On 12/21/06, Matthieu BARBE [EMAIL PROTECTED] wrote: Mike, are you my rescuer ? Thx for your patience ! Your astuce run with ie6 !

[jQuery] 24 days - today with jquery

2006-12-21 Thread Klaus Hartl
http://24ways.org/2006/a-scripting-carol by Derek Featherstone ...not a jquery centric example, more about unobtrusive scripting, but still cool. And worth reading anyway. -- Klaus ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] [evangelism] editable jQuery examples blog post

2006-12-21 Thread Olivier Percebois-Garve
this should definitly be on jquery's homepage :-) bander wrote: If you'll excuse my tooting my own horn, I just made a blog post that I think is neat. http://bluej100.blogspot.com/2006/12/jquery-css-style-javascripting.html As I mention in the post, I wrote the following script for my blog:

[jQuery] cache problem? with xmlExec/ taconite

2006-12-21 Thread youngwax
I can't seem to get a second update with taconite/ xmlExec. I have a form with a forms.js submit. It returns xml to xmlExec., which updates the page - works like a charm. If I click the same button again, it seems to go through all the motions, then it updates with the same information as the

Re: [jQuery] cache problem? with xmlExec/ taconite

2006-12-21 Thread Mike Alsup
I have posted a relatively simple example at https://shop dot youngwax dot com/cork1.php. The xml returned is basically just a datestamp, available at Can you post that link again? I'm getting a 404. ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] cache problem? with xmlExec/ taconite

2006-12-21 Thread Mike Alsup
https://shop dot youngwax dot com/j1.5/cork1.php Ok, I see the problem. It's a bug in xmlExec. I'll get it fixed. Mike ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] cache problem? with xmlExec/ taconite

2006-12-21 Thread Mike Alsup
On 12/21/06, Mike Alsup [EMAIL PROTECTED] wrote: https://shop dot youngwax dot com/j1.5/cork1.php Ok, I see the problem. It's a bug in xmlExec. I'll get it fixed. Youngwax, please give this version a try: http://www.malsup.com/jquery/taconite/xmlExec-1.0.4.js Mike