[jQuery] Re: Jquery not running ie and firefox

2007-04-13 Thread Leonardo K
Change this to Should work...

[jQuery] Re: Crashing IE 6, help

2007-04-13 Thread Jeffrey Kretz
If you want to venture into it, you could download a free MS program called Visual Web Developer, and use it to debug the javascript code. http://msdn.microsoft.com/vstudio/express/downloads/default.aspx This page tells you how to use the program to debug javascript: http://www.berniecode.com/

[jQuery] Re: Jquery not running ie and firefox

2007-04-13 Thread Sharique
I have removed jquery.js but condition is still same. When I remove jquery.pack.js this code doesn't work even opera. - Sharique On Apr 14, 8:43 am, David <[EMAIL PROTECTED]> wrote: > Hi Sharique, > > It looks like you are loading jquery twice. jquery.js and jquery.pack.js > are the same thin

[jQuery] Re: Jquery not running ie and firefox

2007-04-13 Thread David
Hi Sharique, It looks like you are loading jquery twice. jquery.js and jquery.pack.js are the same thing, the .pack.js is just a smaller version of the file. Remove one of your script src tags and it should work. Regards, David Sharique wrote: I'm newbie to jquery I have written a simple p

[jQuery] Re: Jquery not running ie and firefox

2007-04-13 Thread Matt Stith
You arent supposed to include both the packed and the unpacked versions, just remove the link that includes jquery.pack.js and it should work fine. On 4/13/07, Sharique <[EMAIL PROTECTED]> wrote: I'm newbie to jquery I have written a simple page for test. Here is the code. It only run in opera

[jQuery] Jquery not running ie and firefox

2007-04-13 Thread Sharique
I'm newbie to jquery I have written a simple page for test. Here is the code. It only run in opera 9.2 ,in IE7 and firefox 2 it doesn't work. Why? Untitled Page $(document).ready(function() { $('a').click(function() { alert("Hello world!"); }); }); H

[jQuery] Re: animate error in IE

2007-04-13 Thread Paul
Jeffrey, thank you!! I had removed the width attribute from the default style. Putting it in again solved the problem. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jeffrey Kretz Sent: Friday, April 13, 2007 6:14 PM To: [EMAIL PROTECTED] Subject: [j

[jQuery] Re: Crashing IE 6, help

2007-04-13 Thread Yansky
There's a lite version available for IE. http://www.getfirebug.com/lite.html I also use IE Developer Toolbar - http://www.microsoft.com/downloads/details.aspx?familyid=E59C3964-672D-4511-BB3E-2D5E1DB91038&displaylang=en & Debug Bar, which has a very handy javascript console & is free for personal

[jQuery] Re: Frames/context/scope gurus, I need your wisdom...

2007-04-13 Thread Daemach
Yes, it was a closure. I'm catching on. Problem solved. On Apr 13, 2:46 pm, "Daemach" <[EMAIL PROTECTED]> wrote: > I ran into a problem with code in one frame trying to operate on an > element in another frame last night that turned out to be caused by > the target DOM not being ready when I ra

[jQuery] Crashing IE 6, help

2007-04-13 Thread Ian Eure
I have a script that's crashing IE 6, hard. I'm not sure what's going on, and I don't know where to start debugging. I should mention that I'm not exactly inexperienced with debugging IE's oddities. But I don't usually encounter cases where IE simply crashes, so I'm not sure where to start. Does

[jQuery] Re: addEventListener for jQuery Events?

2007-04-13 Thread [EMAIL PROTECTED]
Awesome-sauce! Your code at first didn't do anything. Then I added an onload event...THIS works... function init() { $("#header1").click(function(){ $("#div01").BlindToggleVertically(1000,null, 'bounceout'); return false;}) } window.onload = init; Now I can add any other DHTML library and give m

[jQuery] Re: animate error in IE

2007-04-13 Thread Jeffrey Kretz
Do you have a url to this page I could take a look at? If not, which style attributes in "contentNarrow" are being animated? Also double-check that each of the style attributes have a value before the animation starts. Sometimes, if a style attribute was not assigned at all, in IE will end up t

[jQuery] animate error in IE

2007-04-13 Thread Paul Malan
I'm losing my mind. This simple little bit of code works a charm in Firefox and not IE 6/7: $('#content').animate({className: 'contentNarrow'},1000, function(){ $('#podContainer:hidden').fadeIn(1000); $("#content").load("screens/order.cfm"); }); The JS error is useless, even usi

[jQuery] Re: Help badly in highlight text

2007-04-13 Thread Ⓙⓐⓚⓔ
I did something similar (again on my dog's site) http://jpassoc.com/junior/story/ I wrote a couple of plugins to hook into the text of a page (in my case loaded via $.get) and diddle with the the class and add some clicks. http://jpassoc.com/js/jquery-kidsbook.js this is 'hook' jQuery.fn.hook=f

[jQuery] Re: Select box redraw in IE - Solution?

2007-04-13 Thread Larry Garfield
I THINK I figured this one out. I was creating the new select box dynamically by cloning the former, like so: var unselected = selected.clone(true); unselected.attr('name', 'unselected_' + unselected.attr('name')); For whatever reason, when I did that IE wasn't removing elements from the new

[jQuery] Frames/context/scope gurus, I need your wisdom...

2007-04-13 Thread Daemach
I ran into a problem with code in one frame trying to operate on an element in another frame last night that turned out to be caused by the target DOM not being ready when I ran the selector. I created a quick jq plugin that acts like $(document).ready() to run functions when the target frame's D

[jQuery] Re: Displaying a rotated image

2007-04-13 Thread Ⓙⓐⓚⓔ
iPhoto rotates pretty well, but it doesn't save that simple change to the file unless you also do something to it. After a crop... it's available for use in jQuery to play with as you choose. All my dog's pictures are edited in iPhoto! http://jpassoc.com/junior (there! I brought it back on topi

[jQuery] Help badly in highlight text

2007-04-13 Thread Sebastián V . Würtz
Im trying to make a "highlight text from search" script wich must load the "keyword" saves into a hidden field, but cant make it work, i found some script in the web but dosnt adjust to what i need if any1 can helpme what wrong here i apreciate. I just modify it a little i know now is not worki

[jQuery] Re: addEventListener for jQuery Events?

2007-04-13 Thread Leonardo K
Just make this: $("#header1").click(function(){ $("#div01").BlindToggleVertically(1000,null, 'bounceout'); return false; }): :D...Very simple. On 4/13/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: I want to use jQuery as one of potentially many DHTML engines for my site. Therefor I want t

[jQuery] Re: BlockUI: DOM element removed after first unblock

2007-04-13 Thread Matt Grimm
You're absolutely right, it does work either way. My earlier tests were failing, but that could have been for other reasons. The important thing is that it's working. Thank you again, Mike. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Alsup Sent

[jQuery] addEventListener for jQuery Events?

2007-04-13 Thread [EMAIL PROTECTED]
I want to use jQuery as one of potentially many DHTML engines for my site. Therefor I want to move the events from my XHTML code to a JavaScript includes. I've not yet had anyone help me get any of the functions working though someone suggested using addEventListener. I'm not really good with Java

[jQuery] Re: Select box redraw in IE

2007-04-13 Thread Larry Garfield
I'll have a look at the code there, thanks. I think I have narrowed down the cause of the problem, though. IE *really* doesn't like that I'm adding a select box to the page dynamically, and is therefore pouting by refusing to redraw it. As the wiki says, IE is a sadist. :-( --Larry Garfi

[jQuery] Re: Displaying a rotated image

2007-04-13 Thread rolfsf
This isn't really the right forum for this question, but... I'm not sure how the current version of iPhoto handles rotating images, but if you select the images you want in the iPhoto viewer and export them to a new folder (File > Export) they'll be oriented as you see them in the viewer. If you

[jQuery] Re: Displaying a rotated image

2007-04-13 Thread Jonathan Sharp
You have to do that in image manipulation software. When your digital camera takes the photo, most store an orientation flag that programs like iPhoto are smart enough to read and rotate the image for you automatically. In the raw file though the image is still incorrectly stored. There isn't a w

[jQuery] Re: Using TableSorter with hide()/show() on table rows

2007-04-13 Thread Daemach
Speaking of custom code, how is the demi-awesome Matt Kruse tablesorter/filter/pager/gogetmeabeer jquery plugin coming? :) On Apr 13, 11:02 am, "Matt Kruse" <[EMAIL PROTECTED]> wrote: > One approach would be to put connected rows in separate tbody tags, > then sort the tbody objects based on the

[jQuery] Re: issue with slideToggle

2007-04-13 Thread Priest, James \(NIH/NIEHS\) [C]
Well - I was just digging through the docs and switched it from: slideToggle('fast') to toggle('fast') And it seems to do the same thing, and work in IE... I'll go back though and check out your suggestions just to see if I can find the issue! Thanks, Jim > -Original Message- > F

[jQuery] Displaying a rotated image

2007-04-13 Thread Rhapidophyllum
I have a lot of jpeg digital photos that display correctly in my local photo software (Mac iPhoto). However, when displaying the vertical photos on a web page, they are oriented horizontally/sideways. Is there a way to rotate the image so that it displays correctly?

[jQuery] Re: Select box redraw in IE

2007-04-13 Thread Leonardo K
Check this out: http://200.169.53.89:8080/WebApplication/Test/teste.html I'm using the plugin jquery.select.js from http://www.texotela.co.uk/code/jquery/select/, but I modified some lines of the code. On 4/13/07, Larry Garfield <[EMAIL PROTECTED]> wrote: Thanks Karl! I'm afraid that's not

[jQuery] Re: issue with slideToggle

2007-04-13 Thread real
I'm not 100% sure if this would be the cause of your problem, but I've had some issues with disappearing content in IE. It's due to some bug of theirs, and I know of two fixes. One is to set the CSS line-height rule to 1 or 1.2 or something on the detail block and it might fix it. Or you can set t

[jQuery] Re: Select box redraw in IE

2007-04-13 Thread Larry Garfield
Thanks Karl! I'm afraid that's not working either. I'm actually manipulating a multi-value select box, not single value. That's where the redraw problem is happening. Current snapshot of what I'm doing is here: http://www.garfieldtech.com/jsdemo/pullbox/test1.html The behavior in Firefox

[jQuery] Re: Form Plugin Won't Work in IE

2007-04-13 Thread Diego A.
Glad to know it worked matey! On 13/04/07, AJ <[EMAIL PROTECTED]> wrote: > > > Okay, so after about four hours of testing, I finally discovered the > fix. Good news it has zero to do with jQuery. > > It actually was caused by CakePHP. The actual JSON values were being > created in a Cake view whic

[jQuery] issue with slideToggle

2007-04-13 Thread Priest, James \(NIH/NIEHS\) [C]
I'm trying to wrap up my application and am going through and debugging a few things in IE (whoo hoo!) I've got a weird issue with slideToggle and I can't get it fixed and it's driving me nuts: I have a list, and each item has a 'detail' block which I hide until a user clicks to see details. I

[jQuery] Re: Form Plugin Won't Work in IE

2007-04-13 Thread AJ
Okay, so after about four hours of testing, I finally discovered the fix. Good news it has zero to do with jQuery. It actually was caused by CakePHP. The actual JSON values were being created in a Cake view which was outputting it for the Ajax callback. What I did not realize, that if Cake is in

[jQuery] Re: Using TableSorter with hide()/show() on table rows

2007-04-13 Thread Matt Kruse
One approach would be to put connected rows in separate tbody tags, then sort the tbody objects based on the first tr in the tbody. This would be a specialized way of sorting, though, and you would probably need to write some custom code to accomplish it. Matt Kruse On Apr 13, 12:53 pm, "Chris

[jQuery] Using TableSorter with hide()/show() on table rows

2007-04-13 Thread Chris W. Parker
Hello, Is there anyway to tie rows in a table together so that when TableSorter sorts the table it will always keep the rows together and in the same order? I'm trying to dynamically hide/show certain rows but they appear at the bottom of the table because of TableSorter. Anyone have any thou

[jQuery] Re: Why do hide/show elements appear at the end?

2007-04-13 Thread Chris W. Parker
I figured out why. It's because I'm using TableSorter on that table and all the rows (as would be expected) are being sorted. I'm going to start a new thread on this. Chris.

[jQuery] Re: What is the right "find" expression?

2007-04-13 Thread Jeffrey Kretz
If you are interested, I used a workaround for dragging a cell. The item to be dragged is the cell's contents, and the drag handle is the cell itself. Now, the standard idrag.js looks for an optional handle going down the hierarchy. I made this change: var dhe = o.handle ? (o.handleUp ? jQuery

[jQuery] Re: .find() works in 1.1.2 but not 1.0.4?

2007-04-13 Thread m3avrck
John, that worked wonders! Didn't realize you could wrap a jQuery object in another :-D Yy!!! Will be announcing this plugin tonight :-D ted On Apr 13, 12:00 pm, "John Resig" <[EMAIL PROTECTED]> wrote: > Probably the easiest way to duplicate what you're trying to do, in > both versions o

[jQuery] Re: .find() works in 1.1.2 but not 1.0.4?

2007-04-13 Thread Brian Cherne
I stumbled upon this jQuery speed test from someone else's web site. It's testing against v1.0.4 and v1.1.2 (I think)... I understand wanting to write a backwards compatible plug-in, but in an ideal world folks should try to use the more recent version (for speed an

[jQuery] Re: Why do hide/show elements appear at the end?

2007-04-13 Thread Chris W. Parker
On Friday, April 13, 2007 9:37 AM Glen Lipka <> said: > That is exactly what I got with your code. > Which browser is it acting wrong? > Can you post your code somewhere? That's good, if not confusing, news. :) I'm using FF2. I'll send you a link off list. Thanks, Chris.

[jQuery] Re: Select box redraw in IE

2007-04-13 Thread Karl Swedberg
On Apr 13, 2007, at 12:22 PM, Larry Garfield wrote: Not yet. Honestly, I kept having problems with the :selected style syntax. It never matched elements for me. That's why I switched to using [EMAIL PROTECTED], which someone in #jQuery suggested (I don't recall who). I'll give that a tr

[jQuery] Re: Google Toolbar Messages Strike Again!

2007-04-13 Thread Aaron Heimlich
No problem, dude! Happy to help! On 4/13/07, Mike Alsup <[EMAIL PROTECTED]> wrote: Aaron, Nice work tracking down all this info on the Google Toolbar. I'm saving this post because I know I'll need it at some point in the future. Thanks! Mike > Field's with empty (or non-existent) title at

[jQuery] Re: Why do hide/show elements appear at the end?

2007-04-13 Thread Glen Lipka
On 4/13/07, Chris W. Parker <[EMAIL PROTECTED]> wrote: I would expect it to look like this: hide/show control here I am! hide/show control here I am! That is exactly what I got with your code. Which browser is it acting wrong? Can you post your code somewhere? Glen

[jQuery] Re: Autocomplete Question

2007-04-13 Thread Jeff Fleitz
Excellent, ideas Dan. Let me give that a shot. I appreciate the effort on this, I know it was a lot to absorb. Thanks! Jeff

[jQuery] Re: Select box redraw in IE

2007-04-13 Thread Larry Garfield
Not yet. Honestly, I kept having problems with the :selected style syntax. It never matched elements for me. That's why I switched to using [EMAIL PROTECTED], which someone in #jQuery suggested (I don't recall who). I'll give that a try this afternoon and see if it works. :-) --Larry Garf

[jQuery] Why do hide/show elements appear at the end?

2007-04-13 Thread Chris W. Parker
Hello, I am hiding/showing a that appears (in the HTML) immediately after the that contains the control but when it is shown it appears at the end of the table (along with the other s that I'm doing the same thing to). HTML: hide/show control here I am! hide/show control

[jQuery] Re: .find() works in 1.1.2 but not 1.0.4?

2007-04-13 Thread John Resig
Probably the easiest way to duplicate what you're trying to do, in both versions of jQuery, is to wrap the jQuery object in another: y = $(year).find('option:eq(1)').val(); that should protect it. --John On 4/13/07, m3avrck <[EMAIL PROTECTED]> wrote: Ah yes, I'm trying to make this work in

[jQuery] Re: Autocomplete Question

2007-04-13 Thread Dan G. Switzer, II
Jeff, First off... Wow, that's a long message and I had to read it a few times, but I think I know what you're looking for! >What I would like to do is identify some jQuery(?) variable that would >allow me to bracket some code in the findValue() function, so that if >the field value being evalua

[jQuery] Re: Select box redraw in IE

2007-04-13 Thread Karl Swedberg
Hi Larry, Have you tried something like this? (untested in IE) : $('#select_box_from :selected').remove().appendTo('#select_box_to'); --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Apr 13, 2007, at 11:23 AM, Larry Garfield wrote: Hi folks.

[jQuery] Re: .find() works in 1.1.2 but not 1.0.4?

2007-04-13 Thread m3avrck
Ah yes, I'm trying to make this work in 1.0 and 1.1 ;-) ted On Apr 13, 11:39 am, Karl Swedberg <[EMAIL PROTECTED]> wrote: > On Apr 13, 2007, at 9:44 AM, m3avrck wrote: > > > Ahhh, ok I didn't realize .find() is destructive now :-) > > Sorry I'm not answering the question, but I wanted to clarify

[jQuery] Re: Form Plugin Won't Work in IE

2007-04-13 Thread AJ
> If the above doesn't help, then there may be an error in your callback > function. > It's very annoying but jQuery supresses all error messages within its > Ajax implementation. I stopped this error trapping so if something > goes wrong I have something to go on and find a way to fix the > prob

[jQuery] Re: .find() works in 1.1.2 but not 1.0.4?

2007-04-13 Thread Karl Swedberg
On Apr 13, 2007, at 9:44 AM, m3avrck wrote: Ahhh, ok I didn't realize .find() is destructive now :-) Sorry I'm not answering the question, but I wanted to clarify that .find() isn't destructive now. It was only destructive pre-1.1. Cheers, --Karl _ Karl Swedberg www.english

[jQuery] Re: Interface Slider - Clicks don't trigger onChange event

2007-04-13 Thread skimber
If anyone's interested I have now posted this as a bug report here: http://dev.jquery.com/ticket/1122

[jQuery] Re: How do you write custom callback functions in jQuery?

2007-04-13 Thread real
Oops, I meant thanks Jorn* On Apr 11, 9:07 pm, "real" <[EMAIL PROTECTED]> wrote: > Oh ok thanks Klaus, I'll look into that. > > On Apr 11, 5:36 pm, "Aaron Heimlich" <[EMAIL PROTECTED]> wrote: > > > On 4/11/07, Klaus Hartl <[EMAIL PROTECTED]> wrote: > > > > Nice! Where do useful micro plugins go?

[jQuery] Select box redraw in IE

2007-04-13 Thread Larry Garfield
Hi folks. I'm trying to move an option element from one select box to another. I have it working in Firefox now, with a simple append: $('#selectbox_to').append($('#selectbox_from [EMAIL PROTECTED]')); That works great everywhere except, of course, IE. In IE, it does actually move the opti

[jQuery] Re: Google Toolbar Messages Strike Again!

2007-04-13 Thread Mike Alsup
Aaron, Nice work tracking down all this info on the Google Toolbar. I'm saving this post because I know I'll need it at some point in the future. Thanks! Mike Field's with empty (or non-existent) title attributes *will* get taken over by GT, but if the field already has a non-blank title at

[jQuery] Re: BlockUI: DOM element removed after first unblock

2007-04-13 Thread Mike Alsup
Hi Matt, Was that not working? That should work too. It shouldn't matter if you're using a DOM element or a jQuery object, just as long as you cache it so that the element doesn't get lost. So this is also valid:

[jQuery] Re: BlockUI: DOM element removed after first unblock

2007-04-13 Thread Matt Grimm
Ah, excellent, that worked nicely. I had been citing this snippet from the "Page blocking" section that led me astray: // embedded content used as message var messageElement = $('#domMessage'); $('#pageDemo4').click(function() { $.blockUI(messageElement); test(); }); m. -Orig

[jQuery] Form Plugin and AJAX DOM binding

2007-04-13 Thread flagship interactive
Hello all, I have a situation that I keep bumping into and not sure what the proper way to handle. I have function to submit a request to update a customer's profile from a form and on the way in, I am bringing a new DIV inside the target DIV, but since it is new DIV the DOM doesn't know it is th

[jQuery] Re: What is the right "find" expression?

2007-04-13 Thread Dan G. Switzer, II
Dave, > >id="stu_1" value="1" class="studentField">Alvarado, Dave (ID: 3)div> > >How do I extract this value? Thanks, - Dave I think you're going to have issues trying to drag a cell around. It could cause unexpected results. To answer your direct question though, this should grab the value o

[jQuery] Re: .find() works in 1.1.2 but not 1.0.4?

2007-04-13 Thread m3avrck
Ahhh, ok I didn't realize .find() is destructive now :-) But even with that, I can't get it to work still: y = year; y = y.find('option:eq(1)').val(); If I try and copy the var to a new one, it doesn't work. However, if I just say y = 2007 then it works great, or if I use 1.1.2, it works

[jQuery] Re: BlockUI: DOM element removed after first unblock

2007-04-13 Thread Mike Alsup
Hi Matt, To reuse a DOM element as the blocking content you must cache a reference to it. That's how the DOM examples work at http://www.malsup.com/jquery/block/. This is necessary because you are free to use a different message or element for every blocking call so unblock always removes the

[jQuery] Re: jQuery cross-site AJAX-style loading

2007-04-13 Thread Ralf S. Engelschall
On Fri, Apr 13, 2007, Fil wrote: > > So, could someone with Safari at hand be so kind and quickly view > > http://trainofthoughts.org/repo/export/jquery/jquery.xsajax.test.html > > and tell me what output sequence (N. x, N. ) is visible? > > jQuery XS AJAX Plugin Demo > > output of scri

[jQuery] Litebox

2007-04-13 Thread Mario Moura
Hi How can I add caption in Litebox? How can I setup the position of controls? I see the new feature auto-advance slide show but I need autoplay how can I do this with JQuery? So when my page open litebox start immediately. Regards macm

[jQuery] Re: jQuery tutorial on IBM DeveloperWorks

2007-04-13 Thread [EMAIL PROTECTED]
I've sent it to www.dzone.com, and hit main page today: http://www.dzone.com/links/jquery_on_ibm_developerworks.html A vote? Very nice article. On 11 abr, 18:54, "Sean Catchpole" <[EMAIL PROTECTED]> wrote: > Looks great! I had no ideajQueryadded: $('') !! > > I must be really behind times?! > >

[jQuery] Re: selector for ATTR is empty

2007-04-13 Thread Olaf Bosch
Brandon Aaron schrieb: jQuery provides a trim method already and you can use it like this: A, sorry for lost the JQuery-Way ;) -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http://olaf-bosch.de www.akitafreund.de ---

[jQuery] Re: Form Plugin Won't Work in IE

2007-04-13 Thread Diego A.
Ah, maybe this will help. I've recently switched to jQuery and I had to transfer all my javascript functionality to jQuery style code. Anyway, the thing is, when dealing with form submission, this happened to me quite a lot. One of the many problems I had to fix was that I was handling XML data a

[jQuery] Re: Form Plugin Won't Work in IE

2007-04-13 Thread AJ
On Apr 12, 6:11 pm, "Diego A." <[EMAIL PROTECTED]> wrote: > What you've said should work. > Do you have an URL I can look at? Unfortunately, no, as this is a private extranet. One potential gotcha is that there is some other jquery on this page, in addition to the form stuff. Maybe my next step

[jQuery] Re: clone does copy the accesskey attribute

2007-04-13 Thread xavier
Thanks, elegant solution ! X+ On Apr 13, 11:58 am, Klaus Hartl <[EMAIL PROTECTED]> wrote: > xavier schrieb: > > > Hi, > > > When I clone an element that has an accesskey, it's copied to the > > cloned element as well. > > > Then you end up with two different elements having the same accesskey. >

[jQuery] Re: jQuery cross-site AJAX-style loading

2007-04-13 Thread Fil
So, could someone with Safari at hand be so kind and quickly view http://trainofthoughts.org/repo/export/jquery/jquery.xsajax.test.html and tell me what output sequence (N. x, N. ) is visible? jQuery XS AJAX Plugin Demo output of script #1: i=17 output of script #2: j=52 1. start se

[jQuery] Re: clone does copy the accesskey attribute

2007-04-13 Thread Klaus Hartl
xavier schrieb: Hi, When I clone an element that has an accesskey, it's copied to the cloned element as well. Then you end up with two different elements having the same accesskey. Obvioulsy no good. Do I have to call .removeAttr('accesskey') method on each cloned node or is there a better wa

[jQuery] Re: Interface "folder-tree" requests

2007-04-13 Thread Stefan Petre
Hey, I will rewrite that demo as soon as Interface 2 is finished Stefan 2007/4/13, Gilles (Webunity) <[EMAIL PROTECTED]>: I don't know if Stefan is reading this discussion group, but i have some questions for him. I was wondering if he wants to change the demo at: http://interface.eyecon.ro/

[jQuery] Interface "folder-tree" requests

2007-04-13 Thread Gilles (Webunity)
I don't know if Stefan is reading this discussion group, but i have some questions for him. I was wondering if he wants to change the demo at: http://interface.eyecon.ro/demos/drag_drop_tree.html so that it does the following thing: - Don't allow LI's to be dragged and dropped BELOW their structu

[jQuery] clone does copy the accesskey attribute

2007-04-13 Thread xavier
Hi, When I clone an element that has an accesskey, it's copied to the cloned element as well. Then you end up with two different elements having the same accesskey. Obvioulsy no good. Do I have to call .removeAttr('accesskey') method on each cloned node or is there a better way ? Thanks in adv

[jQuery] Re: Ajax based Accordion

2007-04-13 Thread xavier
Have you tried to create the accordion on a static html file with the same structure ? Does it work ? If not, that's probably you have to give some parameters to the accordion call to make it work. X+ On Apr 13, 10:59 am, "WebolizeR" <[EMAIL PROTECTED]> wrote: > On 13 Nisan, 01:06, "WebolizeR"

[jQuery] Re: jQuery cross-site AJAX-style loading

2007-04-13 Thread Remy Sharp
The latest version of xsajax does work in Safari 2 (which should also work in Safari 1.3) On Apr 13, 9:39 am, "Ralf S. Engelschall" wrote: > On Thu, Apr 12, 2007, Ralf S. Engelschall wrote: > > On Thu, Apr 12, 2007, Jörn Zaefferer wrote: > > > > Ralf S. Engelschall schrieb: > > > > On Thu, Apr

[jQuery] Re: hover and autoscroll

2007-04-13 Thread Jan Sorgalla
Hi, blairafon wrote: > > is it possible to autoscroll using Jcarousel on a mouseover instead of > having to click the arrow? see an example http://www.vibesconnect.com > here > > also if jcarousel cannot do that, what are they using for that effect? > > your help will be greatly appreciated

[jQuery] Re: Ajax based Accordion

2007-04-13 Thread WebolizeR
On 13 Nisan, 01:06, "WebolizeR" <[EMAIL PROTECTED]> wrote: > Hi; > > I have been creating an accordion application whose content has been > loading by ajax, code sample like below: > > $("#loading").ajaxStart(function(){ $(this).show();}); > $("#loading").ajaxStop(function(){ $

[jQuery] Re: jQuery cross-site AJAX-style loading

2007-04-13 Thread Ralf S. Engelschall
On Thu, Apr 12, 2007, Ralf S. Engelschall wrote: > On Thu, Apr 12, 2007, Jörn Zaefferer wrote: > > > Ralf S. Engelschall schrieb: > > > On Thu, Apr 12, 2007, wrote: > > > > > >> I've found the nightly webkits behave nothing like the latest safari! xml > > >> handling is improved oth

[jQuery] Re: jQuery cross-site AJAX-style loading

2007-04-13 Thread Remy Sharp
Hi there, I've looked through the jspax code, and it looks like he's creating an explicit test once the package is loaded as I suggested initially. This can can also be achieved without the second script element: function loadExtScript(src, test, callback) { var s = document.createElement('scr

[jQuery] Re: Flexible jCarousel

2007-04-13 Thread Jan Sorgalla
Klaus Hartl wrote: > Jan Sorgalla schrieb: > > ok, i see now. One of the main differences between the old and the new > > version of jCarousel is, that you no longer have to pass itemsVisible > > as option. The number of visible items are calculated on the fly > > depending on the sizes of the cl

[jQuery] Re: Flexible jCarousel

2007-04-13 Thread Klaus Hartl
Jan Sorgalla schrieb: ok, i see now. One of the main differences between the old and the new version of jCarousel is, that you no longer have to pass itemsVisible as option. The number of visible items are calculated on the fly depending on the sizes of the clip and the items. I've done that mai

[jQuery] Ajax based Accordion

2007-04-13 Thread WebolizeR
Hi; I have been creating an accordion application whose content has been loading by ajax, code sample like below: $("#loading").ajaxStart(function(){ $(this).show();}); $("#loading").ajaxStop(function(){ $(this).hide();}); $.getJSON("ajax.php",{ task: "shops",

[jQuery] Re: Flexible jCarousel

2007-04-13 Thread phplord
I was modified the ajax based jCarousel sample in http://www.gotcreme.com/index.php?option=com_creme&Itemid=33 (click left-top links), you can check the code there... On 12 Nisan, 10:34, Klaus Hartl <[EMAIL PROTECTED]> wrote: > Hi jQuerians! > > I was wondering if there is a mod for jCarousel out

[jQuery] Re: Understanding $(document).ready() etc

2007-04-13 Thread Klaus Hartl
wyo schrieb: On Apr 12, 10:41 am, Klaus Hartl <[EMAIL PROTECTED]> wrote: wyo schrieb: As I understand $(document).ready() is more or less just an enclosure to make sure the DOM is correcly available for use with jQuery. As it Yes, the goal should be to separate behavior (JavaScript) and stru

[jQuery] Re: Google Toolbar Messages Strike Again!

2007-04-13 Thread Aaron Heimlich
On 4/12/07, Rick Faircloth <[EMAIL PROTECTED]> wrote: Ideas? I have a couple: 1. Rename your fields to something that GT won't recognize (not going to be easy[1]) These two rely on the line-swap fix I mentioned earlier[2] being applied: Either: 2. Use plugin setting exclusively when defini

[jQuery] Re: Understanding $(document).ready() etc

2007-04-13 Thread wyo
On Apr 12, 10:41 am, Klaus Hartl <[EMAIL PROTECTED]> wrote: > wyo schrieb: > > > As I understand $(document).ready() is more or less just an enclosure > > to make sure the DOM is correcly available for use with jQuery. As it > > Yes, the goal should be to separate behavior (JavaScript) and structu