[jQuery] Ajax only works once

2006-09-04 Thread ivan quintero
I have form elements that update an HTML table within a DIV. It's an invoices application and the each detail element (invoice items) on the invoice has a input button with that when clicked on it deletes that item. The problem is that it works only once. I click on the button, the item is

Re: [jQuery] Ajax only works once

2006-09-04 Thread David Duymelinck
ivan quintero schreef: I have form elements that update an HTML table within a DIV. It's an invoices application and the each detail element (invoice items) on the invoice has a input button with that when clicked on it deletes that item. The problem is that it works only once. I click on

Re: [jQuery] tableSorter feedback requested!

2006-09-04 Thread Sam Collett
One thing I have noticed is that it does not work when you have a table footer set:table id=simple-init-sort thead tr thName/th thAge/th thTotal purchase/th thEmail/th thDate/th /tr /thead tbody tr tdPeter/td td28/td td$9.99/td td [EMAIL PROTECTED]/td tdJul 6, 2006 8:14

Re: [jQuery] Thickbox 2.0 and dynamic content

2006-09-04 Thread Dan Atkinson
Dylan, I would contact Cody directly with this (if you haven't already), and put your proposal on the thickbox forum, as Cody is starting work on a new version: http://codylindley.com/thickboxforum/comments.php?DiscussionID=90 http://codylindley.com/thickboxforum/comments.php?DiscussionID=90

Re: [jQuery] problem with $(TAGNAME, httprequest.responseXML) with certain browsers

2006-09-04 Thread Mario Landgraf
John Resig schrieb: Thanks for the great test case, I'll be checking into this. Ticket: http://proj.jquery.com/dev/bugs/bug/174/ Thank you :) I'll probably make a few other testcases as well as I'm trying to figure out how to do stuff with jQuery :). If you want I can send them to the mailing

Re: [jQuery] Semi-New jQuery Site Live

2006-09-04 Thread Krzysztof FF
John Resig wrote: (...)Please, if you spot 'bugs', missing pages, let me know. (...) --John 1. I would prefer links to other pages be accessible on the top or in a side column, not in the bottom part. I have to scroll down to switch to another page. This is annoying. 2. On main page,

Re: [jQuery] animate() support for custom tween/easing 'formulas'

2006-09-04 Thread George Smith
I've been working on this for a while, trying to work out the best way of implementing this as a plugin whilst trying to keep as DRY as possible, just spotted this post, hope I'm not too late :) I finally figured out the easiest way of defining an ease method would be to bastardise the speed

Re: [jQuery] no action after $.load.. why?

2006-09-04 Thread Smith, George
With the load function you don't need to do the $("#main").html(txt);bit. That's probably causing an error. Are you on firefox? Try the developer extensions/firebug to track down errors. Try $(document).ready( function(){ $("#main").load("get_calcform.php",{ idref: iditem });

Re: [jQuery] problem with $(TAGNAME, httprequest.responseXML) with certain browsers

2006-09-04 Thread Jörn Zaefferer
Hi Mario! I'll probably make a few other testcases as well as I'm trying to figure out how to do stuff with jQuery :). If you want I can send them to the mailing list or mail them to you directly. I'm working on the test cases. Therefore it might be a good idea to send any additional tests

Re: [jQuery] jCarousel

2006-09-04 Thread Jan Sorgalla
Yea, i thought about that long time. Also regarding Justins suggestion: Justin Carter wrote: In an ideal world it would actually be nice to achieve with just a class name on the unordered list, but I know that might be taking it a bit too far :) At the end, i decided not to handle

[jQuery] Searching for XML attribute

2006-09-04 Thread Ian B
I seem to be having a problem with the latest release of Jquery Given this XML:- ?xml version=1.0 encoding=UTF-8? viewentries toplevelentries=1 viewentry position=1 unid=91315C4702B51A9780257012002DFFCF noteid=4806 siblings=1 entrydata columnnumber=0 name=Abbreviated Name

Re: [jQuery] Event Model Madness

2006-09-04 Thread Chris Ovenden
On 9/1/06, Kelvin Luck [EMAIL PROTECTED] wrote: Michael Haggerty wrote: Since Flash likes to always appear on top, I have come up with a method to hide the player tied to the firing of Thickbox. This isn't an answer to your question but a suggestion for a workaround. If you embed the flash

Re: [jQuery] problem with $(TAGNAME, httprequest.responseXML) with certain browsers

2006-09-04 Thread Mario Landgraf
Hi Jörn! Jörn Zaefferer schrieb: I'll probably make a few other testcases as well as I'm trying to figure out how to do stuff with jQuery :). If you want I can send them to the mailing list or mail them to you directly. I'm working on the test cases. Therefore it might be a good idea to

Re: [jQuery] Interface Slider in Opera

2006-09-04 Thread Yehuda Katz
It's not a major problem. You might have missed it. When you start a drag, the element jumps a few pixels. This had bad consequences for the slider (which seems to rely on horizontal and vertical constraints).-- Yehuda On 9/4/06, Stefan Petre [EMAIL PROTECTED] wrote: Yehuda Katz wrote: This seems

[jQuery] Bug: parent() changes reference of element

2006-09-04 Thread Arash Yalpani
Hi, I think I have found a bug in parent(), resulting in a reference change somewhere. Please check the error here: http://www.yalpani.de/jquery/parent-check/ Explanation: * I take this block of HTML... div id=testingOuter div id=testingInner/div /div * ...and do... jObj =

Re: [jQuery] Anything similar to scriptaculous for JQuery

2006-09-04 Thread Rey Bango
Thank Yehuda! Awesome UI components. I can't wait to try them out. Rey Yehuda Katz wrote: Yup! jQuery has the Interface library: http://interface.eyecon.ro On 9/3/06, *Rey Bango* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Hi everyone, Prototype users have the

Re: [jQuery] Anything similar to scriptaculous for JQuery

2006-09-04 Thread Rey Bango
Thanks John! Man the plug-ins list is REALLY awesome. I didn't realize that there were so many options available for JQuery. It was the one thing holding me back from looking at JQuery vs. Prototype or Dojo. Rey... John Resig wrote: There's the excellent Interface plugin for jQuery - it is a

Re: [jQuery] ancestors, parent and parents

2006-09-04 Thread Yehuda Katz
Parent is the direct parent of the node(s). Ancestors and parents are any parents, no matter how high up in hierarchy.On 9/4/06, Sam Collett [EMAIL PROTECTED] wrote:What is the difference between these three? ancestors and parents look like they are the same, but how is parent different?

Re: [jQuery] jCarousel

2006-09-04 Thread Jan Sorgalla
Hi, i'm working on a solution. Check my first try: http://sorgalla.com/projects/jcarousel-dev/example_static_horizontal.html You can pass callback functions (much like button state handlers) that are called if an item changes its state (becomes first, becomes last, becomes visible). That is

Re: [jQuery] jCarousel

2006-09-04 Thread Dan Atkinson
I think that, then autoscroll would set the images to false. For example, some pseudocode: if(autoscroll == true) { show prev/next images; } Jan Sorgalla wrote: Yea, i thought about that long time. Also regarding Justins suggestion: Justin Carter wrote: In an ideal world it would

Re: [jQuery] Interface Slider in Opera

2006-09-04 Thread Stefan Petre
hey Yehuda, Would you try again the drag example http://interface.eyecon.ro/demos/drag.html and slider http://interface.eyecon.ro/demos/slider.html . It is possible I fix it, at least for Safari 1.3.2 which had the same behavior. I don't know about Opera. Also, please tell me which Opera

Re: [jQuery] animate() support for custom tween/easing 'formulas'

2006-09-04 Thread Larry Garfield
On Monday 04 September 2006 06:30, George Smith wrote: Check it out - http://gsgd.co.uk/sandbox/jquery.easing.php http://gsgd.co.uk/sandbox/jquery.easing.php Hm. In Konqueror, every one of the demos does exactly the same thing. Click one and it slides out, click a second time and it slides

Re: [jQuery] Interface Slider in Opera

2006-09-04 Thread Larry Garfield
I'm afraid I've bad news. Neither of those work at all in Konqueror 3.5. As in, I try to click and drag and nothing moves at all. On Monday 04 September 2006 11:55, Stefan Petre wrote: hey Yehuda, Would you try again the drag example http://interface.eyecon.ro/demos/drag.html and slider

Re: [jQuery] jCarousel

2006-09-04 Thread Jan Sorgalla
Autoscrolling doesn't mean that the prev/next controls must be hidden. See: http://sorgalla.com/projects/jcarousel/example_static_auto.html Autoscrolling is enabled but stops if the user clicks prev/next (option autoScrollStopOnInteract which is true by default). I'm more thinking about an

Re: [jQuery] Interface Slider in Opera

2006-09-04 Thread Yehuda Katz
Is Konquerer a supported Browser for jQuery?-- YehudaOn 9/4/06, Larry Garfield [EMAIL PROTECTED] wrote:I'm afraid I've bad news.Neither of those work at all in Konqueror 3.5 .Asin, I try to click and drag and nothing moves at all.On Monday 04 September 2006 11:55, Stefan Petre wrote: hey Yehuda,

[jQuery] Download Cheat Sheet, one page , printable, quick refrence, Jquery

2006-09-04 Thread Nilesh Patel
not sure, they should be fine. maybe try again? or here are PNG (image formats) of the pdf's if that helps, http://www.define-web.com/jquery_cheat_sheet/jquery_cheat_sheet_080306_v1.png http://www.define-web.com/jquery_cheat_sheet/jquery_cheat_sheet_080306_v1_pg2.png ( files are images taht

[jQuery] Download Cheat Sheet, one page , printable,page 2

2006-09-04 Thread Nilesh Patel
Here is page 2 (back side) for cheat sheet version 1 08.03.06 most of the information here is to do with Non-Function , reference for Supported Selectors Base/Expression/XPath/Custom Plugins/Authoring basic ChainableMethods tip

Re: [jQuery] Interface Slider in Opera

2006-09-04 Thread Stefan Petre
I installed Opera 9.01 :). The problem was that where I used object detection the condition didn't worked with Opera. So besides object detection I had to exclude Opera too. Please try again those links. It should work now on Opera 9. Yehuda Katz wrote: The problem is still there. I am using

Re: [jQuery] Interface Slider in Opera

2006-09-04 Thread Stefan Petre
I installed Opera 9.01 :). The problem was that where I used object detection the condition didn't worked with Opera. So besides object detection I had to exclude Opera too. Please try again those links. It should work now on Opera 9. Yehuda Katz wrote: The problem is still there. I am using

Re: [jQuery] Interface Slider in Opera

2006-09-04 Thread Stefan Petre
I don't have an environment to test on Konqueror. Larry Garfield wrote: I'm afraid I've bad news. Neither of those work at all in Konqueror 3.5. As in, I try to click and drag and nothing moves at all. On Monday 04 September 2006 11:55, Stefan Petre wrote: hey Yehuda, Would you

Re: [jQuery] jCarousel

2006-09-04 Thread Jörn Zaefferer
Jan Sorgalla wrote: I'm more thinking about an extension (jCarouselBuilder) which handles the layout tasks (Building prev/next controls etc.)... Hi Jan, it would be nice to see a generic approach to this problem. There a lots of other plugins that need additonal markup which should not

Re: [jQuery] Bug: parent() changes reference of element

2006-09-04 Thread John Resig
I think I have found a bug in parent(), resulting in a reference change somewhere. Not a bug - just an interesting side effect of jQuery. Every destructive function in jQuery does the same thing (find, parent, children, filter, etc.) - modifying the original jQuery object. There are two ways

Re: [jQuery] Interface Slider in Opera

2006-09-04 Thread Stefan Petre
Me too :) Yehuda Katz wrote: Perfect now. I'm glad I reported the bug. -- Yehuda On 9/4/06, *Stefan Petre* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: I installed Opera 9.01 :). The problem was that where I used object detection the condition didn't worked with Opera. So

Re: [jQuery] jCarousel

2006-09-04 Thread John Resig
it would be nice to see a generic approach to this problem. There a lots of other plugins that need additonal markup which should not exist when scripting is disabled. Maybe you can document your research on the topic. In case you consider generating the markup via js, this entry (with all

Re: [jQuery] animate() support for custom tween/easing 'formulas'

2006-09-04 Thread Larry Garfield
I guess I'm turning into the Konqueror tester around here... :-) They seem to work properly in Konqueror now. The animation isn't perfectly smooth, but each one is working differently now. Perhaps some better name than in and out could be used? To me, out always means at the expanded point.

Re: [jQuery] jCarousel

2006-09-04 Thread Jan Sorgalla
IMO, thats too restrictive. What, if the designer wants to have more than one prev and next controls, ie. two above and two below the list? What if he wants to use button elements or whatver instead if images (ok john, you noticed that at the end of your posting)? I also thought about passing

Re: [jQuery] jCarousel

2006-09-04 Thread John Resig
IMO, thats too restrictive. What, if the designer wants to have more than one prev and next controls, ie. two above and two below the list? What if he wants to use button elements or whatver instead if images (ok john, you noticed that at the end of your posting)? I guess the issue that I

Re: [jQuery] Interface Slider in Opera

2006-09-04 Thread John Resig
Um. John, is it? :-) I thought it was. Nope, heh. If Konquerer was completely up-to-date with Webkit, then I'd be all about supporting it. But as is, they seem to be lagging behind in their updates. Additionally, it requires that an entire other platform (Linux) be supported, for which the

Re: [jQuery] Searching for XML attribute

2006-09-04 Thread John Resig
Ian - Could you try that with jQuery 1.0.1? http://jquery.com/src/jquery-1.0.1.js And let me know if you get the same bug? Also, in 1.0+ jQuery has the method .text() that allows you to easily get the text contents of an element, making your code simply: $('[EMAIL PROTECTED]Abbreviated Name]',

Re: [jQuery] ancestors, parent and parents

2006-09-04 Thread Sam Collett
On 04/09/06, Yehuda Katz [EMAIL PROTECTED] wrote: Parent is the direct parent of the node(s). Ancestors and parents are any parents, no matter how high up in hierarchy.I do think it would be better if parents wasn't there though (if it is the same as ancestors). Why would you have two functions

Re: [jQuery] Download Cheat Sheet, one page , printable, quick refrence, Jquery

2006-09-04 Thread Rey Bango
Got em! Thanks Nilesh! Rey Nilesh Patel wrote: not sure, they should be fine. maybe try again? or here are PNG (image formats) of the pdf's if that helps, http://www.define-web.com/jquery_cheat_sheet/jquery_cheat_sheet_080306_v1.png

Re: [jQuery] jCarousel

2006-09-04 Thread Justin Carter
On 9/5/06, John Resig [EMAIL PROTECTED] wrote: What everyone is getting at - and I agree - is that the extra (non-semantic) markup should be included dynamically by the plugin. Thats right, and I didn't mean for the controls to always be included by the plugin, just in generic cases where no

Re: [jQuery] slideToggle height/visible problems

2006-09-04 Thread Kevin Old
John, I pulled down the latest and it still sets the height at 171px. Any ideas how to fix this? Thanks, Kevin On 9/4/06, Kevin Old [EMAIL PROTECTED] wrote: Hi John, I'm using version 1.0.1 that was downloaded a few days ago. I'll download the latest and see if it doesn't fix it. BTW,