[jQuery] keycodes abstraction layer for different platforms

2008-05-19 Thread Massimiliano Balestrieri
I've noticed that the keycodes of and didn't work as expected on Windows (using the thickbox's keycodes). Keycodes of arrows 37 and 39 work fine. Is there a plugin that abstracts keyboard events from the platform of the browser? Something like if (keycode === 190)// actual

[jQuery] An official list of interesting extensions of the selector engine??

2008-05-19 Thread Enrique Meléndez Estrada
A simple question to jQuery.com webmasters: Does, somewhere in jQuery.com, exist a list of interesting extensions of the selector engine, used normally in some plugins? In negative case, I think that be very interesting;-) for example (and I know not a very useful one, but illustrative):

[jQuery] Re: JQuery and ASP.NET AJAX

2008-05-19 Thread Hamish Campbell
What do you mean exactly? I don't see why you couldn't, but I'm not sure why you would. Have an example? On May 19, 7:30 am, Mike [EMAIL PROTECTED] wrote: Do these work well together or cause conflicts?

[jQuery] why div change position?

2008-05-19 Thread MagOscuro
Hi all i've made an application that you can look here: http://lnx.magoscuro.com/exalted/eitools/ and i've created variuos menu but i've a problem: the head of the menu change is position... ideas?

[jQuery] Re: second time jquery is included, kills previously called plugins

2008-05-19 Thread Ryura
You should be able to use jQuery.noConflict() to restore $ to the first instance of jQuery where the plugins are. On May 18, 9:33 pm, Shelane [EMAIL PROTECTED] wrote: if you have this in this order, the plugin call won't work. it will give an error that the plugin function is not defined

[jQuery] Tooltip IE area map Patch

2008-05-19 Thread ferdjuan
I see there's a patch to get IE to work with tooltip and an image map area, does anyone know how to implement it? When i ran into this problem I tried using cluetip instead but I had problems with it's ajax features, and also it didn't have the iePNGfix like tooltip does, anyone use tooltip in

[jQuery] Re: attr('form') not work in firefox

2008-05-19 Thread Jon Reed
It looks like you're just trying to get the action on the form? $('#a').attr('action'); On May 19, 2:53 am, Matt Quackenbush [EMAIL PROTECTED] wrote: Unless I'm completely misunderstanding something here, that code should not work in any browser.  There is no form attribute on an input /

[jQuery] Re: JQuery and ASP.NET AJAX

2008-05-19 Thread Jon Reed
I dont see any conflicts here - one is client side, the other server side - will be fine :-) On May 18, 8:30 pm, Mike [EMAIL PROTECTED] wrote: Do these work well together or cause conflicts?

[jQuery] jqDock can embed flash/video object?

2008-05-19 Thread Davis
Hi all, Beside img object, is it possible to embed a flash/video object? eg swf or youtube video ? Thanks/Davis.

[jQuery] Ajax doesn't work on Opera Mobile(partially supports ActiveXObject)

2008-05-19 Thread Takayoshi Fujiki
Hi, Could someone answer my questions below...? I found that Ajax function of jQuery doesn't work with Opera Mobile 8.7(on Advanced [es] W-ZERO3), and I added a workaround for this problem to jQuery code as follows. Then it worked on the platform. --- jquery-1.2.3.orig.js2008-05-16

[jQuery] cycle plugin - reset timeout when you mouseout from pager

2008-05-19 Thread Mattisimo
Hi, this may be an embarassingly simple question but I am new to Javascript and JQuery and whilst I am trying to get me head around it all I am getting myself tied up in knots. Could anyone please tell me if it is possible to reset the timing on the cycle plugin so that when you leave the pager

[jQuery] Re: JQuery and ASP.NET AJAX

2008-05-19 Thread Don Quijote de Nicaragua
Funciona Muy bien: Exaple to load a combo: Ejemplo: call the function in CodeBehind: %=Prueba.CargarClientes()% Clase or Class: Public Class Prueba Public Sub Prueba() End Sub Public Shared Function CargarClientes() As String Dim idtPais As System.Data.IDataReader, qrPais As

[jQuery] jcarousel: problem with IE (6 7) scrolling back

2008-05-19 Thread Jeff Kenny
Hi - I noticed a problem on the thickbox example page in both IE 6 and 7 where when you click on an thumbnail in the carousel to get the larger image the carousel scrolls back to the left and closing the thickbox causes it to scroll back to the left again. Any idea what could be causing this and

[jQuery] cycle plugin - reset timeout when you mouseout from pager

2008-05-19 Thread Mattisimo
Hi, (apologies if this is a duplicate post - I got a server error) this may be an embarassingly simple question but I am new to Javascript and JQuery and whilst I am trying to get me head around it all I am getting myself tied up in knots. Could anyone please tell me if it is possible to reset

[jQuery] Re: attr('form') not work in firefox

2008-05-19 Thread [EMAIL PROTECTED]
Just like I dont specify a width or height attribute to input but it actually has one, an input residing in a form automatically have a 'form' attribute whose value references the parent form, so I think it should work.

[jQuery] Re: attr('form') not work in firefox

2008-05-19 Thread bjorsq
As the previous reply stated, there is no attribute form on the input element, but there is a form property on the input object which can be used to identify the form which the input is an ancestor of. If you need the form object in your example, all you need to do is select it using

[jQuery] JQuery Tablesorter can't sort number in Coldfusion

2008-05-19 Thread Bettina
Hi I've got a table with a column with numeric values but it doesn't sort right. Its all made in coldfusion. I would like to sort the Column: Gefahrene Kilometer. There are all Number in there. Here my example: !--- Get Data --- cfquery name=qryGet dataSource=#application.dsn#

[jQuery] Re: attr('form') not work in firefox

2008-05-19 Thread Strija
If I understand correctly you are trying to reference the parent form of the input field. You should do it like this: var form = $(#a).parent(form); alert( form.attr(action); ); On May 19, 3:22 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: This is my html: form id=myForm action= input

[jQuery] Re: Javascript of jQuery?

2008-05-19 Thread Mark
Thanks for all the advice guys. I think I'll get 'Simply Javascript' from sitepoint - or something similar - and start from there. I've got loads of programming experience so I spose I 've got a head start on a total noob! Cheers Mark. On May 19, 12:32 am, Josh Nathanson [EMAIL PROTECTED]

[jQuery] Re: JQuery and ASP.NET AJAX

2008-05-19 Thread Hamish Campbell
But ASP.NET provides controls that produce ajax type interactions right (I believe that was what Mike was referring to)? That is, it will be generating JS for the client. Obviously if you've got a clear understanding of what those ASP.NET controls do, you should be fine. Like I said though, if

[jQuery] Re: JQuery Tablesorter can't sort number in Coldfusion

2008-05-19 Thread Hamish Campbell
jQuery works on the generated source seen by the browser - that is, it's CLIENT side. Rather than posting the CF SERVER source, could you post the source as seen by a browser viewing the page. That will be a LOT easier to decipher. For example, from the example above, we can't tell what the

[jQuery] involuntary closing of tags

2008-05-19 Thread Carl-Erik
Hi, I'm new to jQuery, so forgive my ignorance if I've missed something trivial... I'm trying to move text enclosed in div class=footnotes to the bottom of the page, and insert a link to the footnote in the location it was originally in. However, when the div is moved, the p-tag it was in gets

[jQuery] Re: Javascript of jQuery?

2008-05-19 Thread Karl Swedberg
Another great one for people just starting out with JavaScript is Jeremy Keith's DOM Scripting. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On May 19, 2008, at 4:49 AM, Mark wrote: Thanks for all the advice guys. I think I'll get 'Simply

[jQuery] Re: JQuery Tablesorter can't sort number in Coldfusion

2008-05-19 Thread Bettina
Hi Yeah of course. Here i posted a picture how the table looks like: http://www.onebyte.ch/tablesorter.jpg But it must be a Problem with ColdFusion because wenn i leave the cfoutput away, and write the table and content by hand, the problem ist gone and its working. Its really weard. And the

[jQuery] Re: cycle plugin - reset timeout when you mouseout from pager

2008-05-19 Thread Mike
Could anyone please tell me if it is possible to reset the timing on the cycle plugin so that when you leave the pager you get the full length of time before the cycle moves to the next item? No, this is not directly supported. To change the timing for that situation you would need to stop

[jQuery] bind click event equal to mouseover

2008-05-19 Thread paragasu
is it possible i make one event equal to another event for example, if i put a mouseover on a li/li tags. automaticly, the a mouseover activated? so if i have a tags like lia href=#link here /a/li the link will be highlighted regardless of user put a mouserover on a tags or li tags?

[jQuery] How to select a form which don't have an input with name id?

2008-05-19 Thread tonous
Hello I'm trying to solve this - I have several forms on page and need to be sure that all of them have input id, some of them already have it some of them not, how to get the form where I need to add an input? I tried to get the forms which have this input $(document).ready(function() {

[jQuery] Re: cycle plugin: rotation from outside elements

2008-05-19 Thread tsvika solan
Thanks for the quick response! I implemented what you suggested, and now the correct image is displayed when the slideshow is shown, however, I am having an issue with my pager. It works the first time, but once the slideshow is shown a second time, the pager thumbnails do not function until I

[jQuery] Re: involuntary closing of tags

2008-05-19 Thread Richard D. Worth
What you've described is some invalid HTML. A p can only contain inline elements, so as soon as the browser sees the div it auto-closes the paragraph. The rest of the text was thus never inside the p to begin with and the browser ignores an extra /p tag. Options: 1. Re-think whether this is

[jQuery] Re: Javascript of jQuery?

2008-05-19 Thread Mark
Hey Karl, Thanks for posting ... I've taken your advice and order the Jeremy Kieth book ... Yours is next on the list! Cheers, Mark. On May 19, 1:04 pm, Karl Swedberg [EMAIL PROTECTED] wrote: Another great one for people just starting out with JavaScript is Jeremy Keith's DOM Scripting.

[jQuery] Re: second time jquery is included, kills previously called plugins

2008-05-19 Thread Jason Huck
Well, it's easy to detect whether jQuery is loaded using plain javascript, but once you've determined that it's not loaded, getting it loaded in the correct order (particularly so that you can still use document.ready()) gets tricky. You could create a custom version of jquery.js that looks like

[jQuery] Re: How to select a form which don't have an input with name id?

2008-05-19 Thread Brian Schilt
CORRECTION: the IF statement needs a == instead of the =. if($form.find('input[name=id]').length == 0) {...} On May 19, 9:34 am, Brian Schilt [EMAIL PROTECTED] wrote: You could do something like this: $('form').each(function(){ var $form = $(this);

[jQuery] Re: cycle plugin - reset timeout when you mouseout from pager

2008-05-19 Thread Mattisimo
Thanks for that Mike. I will give that a go. I did try redeclaring the slideshow on mouseout but as you may have guessed it went haywire! Cheers On May 19, 1:31 pm, Mike [EMAIL PROTECTED] wrote: Could anyone please tell me if it is possible to reset the timing on the cycle plugin so that

[jQuery] Re: JQuery and ASP.NET AJAX

2008-05-19 Thread Steve D
I have used both successfully together, but that because the client wanted me too. Personally I would prefer to use jQuery on it's own. I understand what it's doing much better than I understand what the ajax extensions are doing in .Net. It's also a much smaller download (a simple update panel

[jQuery] Plugin like usableforms from ppk

2008-05-19 Thread LPA
Hi, Since a long time I use usableforms javascript script http://www.quirksmode.org/dom/usableforms.html to enhance my form pages. I'd like to know if there is a Jquery plugin which allow to do that. Thanx for your support

[jQuery] Re: attr('form') not work in firefox

2008-05-19 Thread [EMAIL PROTECTED]
Thanks all, it must be my misunderstanding of the dom.

[jQuery] Re: cycle plugin: rotation from outside elements

2008-05-19 Thread Mike
I think this might be related to the pagerAnchorBuilder being called multiple times (each time the slideshow is hidden and then reopened). What can be done about this? Yeah, since you regenerate the pager controls each time startSlideShow is run you should add this before calling cycle:

[jQuery] Re: attr('form') not work in firefox

2008-05-19 Thread Ariel Flesler
No, you're right. Form elements (input, select, textarea, etc) do have a 'form' attribute. I think it's even cross-browser. Your code WILL work with the new version (1.2.4) which will be (hopefully) released soon. If you want to verify this will work, you can get it by doing a checkout:

[jQuery] Re: second time jquery is included, kills previously called plugins

2008-05-19 Thread Ariel Flesler
//include first jQuery(function( $ ){ // $ will be the first jQuery $('#bodyframe').corner('tr'); }); // include second You can also use jQuery.noConflict(); Cheers -- Ariel Flesler http://flesler.blogspot.com/ On 19 mayo, 10:16, Jason Huck [EMAIL PROTECTED] wrote: Well, it's easy

[jQuery] Re: jscrollPane scroll to can't find first element

2008-05-19 Thread Ariel Flesler
I THINK you need to do: $(#holder)[0].scrollTo(firstList); If you can't solve that part, you could check ScrollTo: http://flesler.blogspot.com/2007/10/jqueryscrollto.html Cheers -- Ariel Flesler http://flesler.blogspot.com/ On 18 mayo, 20:06, pedalpete [EMAIL PROTECTED] wrote: Hey, I'm

[jQuery] Re: An official list of interesting extensions of the selector engine??

2008-05-19 Thread Ariel Flesler
http://www.malsup.com/jquery/expr/ http://www.softwareunity.com/sandbox/JQueryMoreSelectors/ http://www.shauninman.com/archive/2008/05/05/css_qualified_selectors The first 2 need to be updated, to use functions instead of strings. They're not supported anymore since 1.2.2 to be compatible with

[jQuery] Re: $.get work in firefox not IE?

2008-05-19 Thread Ariel Flesler
Just a quick guess, but, try: $.get( url,function(data) { $('#messages').html(data); }); Maybe the empty data hash which will generate an empty string of data, somehow annoys IE. Cheers -- Ariel Flesler http://flesler.blogspot.com/ On 17 mayo, 20:44, robert123 [EMAIL PROTECTED] wrote:

[jQuery] Re: Any way to avoid having this IE warning message?

2008-05-19 Thread Ariel Flesler
if( $target.is('tr.rowData:text, tr.rowData textarea') ) $().is() doesn't support complex selectors (at least for now). Cheers -- Ariel Flesler http://flesler.blogspot.com/ On 17 mayo, 16:30, Michael Geary [EMAIL PROTECTED] wrote: The idea with setTimeout is not to wait until the page loads

[jQuery] Re: JQuery and ASP.NET AJAX

2008-05-19 Thread Mike
I used ASP.NET Ajax to make webmethod calls all the time and I know some other frameworks wont work with it that is why I was asking. MOOTOOLS doesnt play nice with ASP.NET Ajax. On May 19, 6:52 am, Steve D [EMAIL PROTECTED] wrote: I have used both successfully together, but that because the

[jQuery] Re: attr('form') not work in firefox

2008-05-19 Thread Brandon Aaron
1.2.4 is available ... just not the release notes :) http://code.jquery.com/jquery.js -- Brandon Aaron On Mon, May 19, 2008 at 9:54 AM, Ariel Flesler [EMAIL PROTECTED] wrote: No, you're right. Form elements (input, select, textarea, etc) do have a 'form' attribute. I think it's even

[jQuery] Re: JQuery and ASP.NET AJAX

2008-05-19 Thread Brandon Aaron
We've fixed several specific issues in dealing with ASP.Net's AJAX framework in the past. As far as I know to date we play nice with ASP.Net. -- Brandon Aaron On Mon, May 19, 2008 at 10:12 AM, Mike [EMAIL PROTECTED] wrote: I used ASP.NET Ajax to make webmethod calls all the time and I know

[jQuery] Re: clueTip Plugin - Loading specific DIV ID in external html

2008-05-19 Thread Aaron
Awesome! Thank you s much for helping me out and looking into the posotioning issue for me! :) On May 14, 12:46 pm, Karl Swedberg [EMAIL PROTECTED] wrote: Hi Aaron, You're too kind. The first question I can answer right away. The second one is probably   going to involve more work. I

[jQuery] Re: clueTip Plugin - Loading specific DIV ID in external html

2008-05-19 Thread Aaron
Also just wondering if it was possible/easier to have the tip show in the center of the screen? On May 19, 10:59 am, Aaron [EMAIL PROTECTED] wrote: Awesome! Thank you s much for helping me out and looking into the posotioning issue for me! :) On May 14, 12:46 pm, Karl Swedberg

[jQuery] Re: Release: jQuery Validation plugin 1.3

2008-05-19 Thread Alexsandro_xpt
Hi Jörn Zaefferer I'm again.. Take a look http://blog.alexsandro.com.br/aa.htm I do it what you tell me but, It dont work, I dont know what more I do. validator.focusInvalid() like's, dont fire very well. What more do? Thanks in advance On 13 maio, 14:26, Jörn Zaefferer [EMAIL PROTECTED]

[jQuery] submit event confusion

2008-05-19 Thread August Lilleaas
Hello there, Got a question regarding the submit event. Got a script that adds text inside text fields when the page loads. There's probably a word for this, but I'm not aware of any, so let's call it in-line form labels. You've probably seen it before - a name field which says Enter your

[jQuery] Re: Ajax doesn't work on Opera Mobile(partially supports ActiveXObject)

2008-05-19 Thread Pyrolupus
Takayoshi Fujiki wrote: I found that Ajax function of jQuery doesn't work with Opera Mobile 8.7(on Advanced [es] W-ZERO3), and I added a workaround for this problem to jQuery code as follows. Then it worked on the platform. --- jquery-1.2.3.orig.js 2008-05-16 16:19:36.0 +0900

[jQuery] radio button value

2008-05-19 Thread Rick Pasotto
How do I get the current value of a radio button? This is my html: input type=radio name=mem_type id=mem0 value=regular / input type=radio name=mem_type id=mem1 value=annual checked=checked / and the javascript: function showval() { var t = $(input[name='mem_type']).val();

[jQuery] Re: attr('form') not work in firefox

2008-05-19 Thread Peter Edwards
I don't think it is correct to call this an attribute, as this implies that you can specify it in the HTML (it is not an allowed attribute in the W3C specification). It should be a cross-browser property of all form elements though. on 19/05/2008 15:54 Ariel Flesler said:: No, you're right.

[jQuery] jQuery parsing ColdFusion 8 JSON

2008-05-19 Thread ajpiano
don't know if anyone has encountered this before, but I'm using CF8 components to return JSON to my applications, but even when i specify dataType:'json' on my ajax requests in JS, ColdFusion returns something along the lines of the following: -

[jQuery] Re: radio button value

2008-05-19 Thread Mike
var t = $(input[name='mem_type']).val(); var t = $(input[name='mem_type']:checked).val();

[jQuery] Re: submit event confusion

2008-05-19 Thread Mike
Here's a paste with the code in question:http://pastie.org/199544 $(this).submit(function(){ $(this).find(:input.unclicked).each(function(){ this.value = ; }); $.post(this.action, $(this).serialize()); return false; // -- stop native browser submit });

[jQuery] Re: I have a nice text accordion menu, but I just need a little assistance.

2008-05-19 Thread ripple
Did you try? jQuery('#theMenu').activate(0); jQuery('#theMenu').activate(1); Treat the accordions as elements in an array. 0 = 1st, 1 = 2nd etc... tegansnyder [EMAIL PROTECTED] wrote: Hello Everyone, I have a built a nice accordion style menu and need a little

[jQuery] Re: Get input value from a loaded page

2008-05-19 Thread wick
Do you have an example page? As ferdjuan mentioned, the usual issue is with the timing - i.e. your hidden input #counter its value aren't available until to the parent page until after your ajax .load() finishes up. In terms of troubleshooting, you don't need to echo your php variable because

[jQuery] Re: What is the purpose of th jcarousel this.funcResize() function?

2008-05-19 Thread Jeff Kenny
I noticed this message after I posted mine, but apparently this this.funcResize() function is also what's causing IE 6 and 7 to scrollback when an item in the list is clicked. Here's my message:

[jQuery] jCarousel - Has anyone implemented link anchors?

2008-05-19 Thread [EMAIL PROTECTED]
Hello I'd love to be able to link to specific pages in a slideshow using anchors? For example: http://www.example.com/slideshow.html#3 - show third page Also, it would be great if the browser address bar reflected the slide being displayed. Has anyone implemented this? I haven't found any

[jQuery] Re: I have a nice text accordion menu, but I just need a little assistance.

2008-05-19 Thread tegansnyder
ripple, First I would like to say thanks for the quick response. I have tried your suggestions. It works for the top level menus perfectly, but I wanted to activate the sub-level - nested menus? On May 19, 11:42 am, ripple [EMAIL PROTECTED] wrote: Did you try?

[jQuery] Re: submit event confusion

2008-05-19 Thread August Lilleaas
$(this).submit(function(){     $(this).find(:input.unclicked).each(function(){        this.value = ;     });     $.post(this.action, $(this).serialize());     return false; // -- stop native browser submit }); Ah, didn't know you could post forms 'by hand' like that, thanks! *reads the

[jQuery] Re: submit event confusion

2008-05-19 Thread August Lilleaas
As always, don't blame the framework ; ) The reason it doesn't work is because the form is an ajaxSubmit form. The values are cleared out nicely when not hooking the form up with ajaxSubmit. Using The Ajax Submit Plugin, .http://www.malsup.com/ jquery/form/. So, I tried doing something this -

[jQuery] Re: I have a nice text accordion menu, but I just need a little assistance.

2008-05-19 Thread ripple
Ok so your accordion's are being set on 3 seperate id's #theMenu #xtraMenu #xtraMenu2 Did you try something like this? jQuery('#xtraMenu').activate(0); tegansnyder [EMAIL PROTECTED] wrote: ripple, First I would like to say thanks for the quick response. I have tried

[jQuery] I have a nice text accordion menu, but I just need a little assistance.

2008-05-19 Thread tegansnyder
Hello Everyone, I have a built a nice accordion style menu and need a little assistance. You can see it in action at http://www.tegdesign.com/menu/ Currently I’m having it open the first element by placing the following code in the jQuery ready function: jQuery('#theMenu').activate(0); What

[jQuery] Re: submit event confusion

2008-05-19 Thread Mike
$(this).submit(function(){ $(this).find(:input.unclicked).each(function(){ this.value = ; }); $.post(this.action, $(this).serialize()); return false; // -- stop native browser submit }); Ah, didn't know you could post forms 'by hand' like that, thanks!

[jQuery] [News] Tutorial: Working with Events, part 2

2008-05-19 Thread Karl Swedberg
Hi everyone, Just wanted to let you know that I posted a new tutorial on learningjquery.com: Working with Events, part 2. This tutorial first shows how to use .clone(true) to clone events along with elements, and then it explains event re-binding and unbinding with a quick look at event

[jQuery] Re: Javascript of jQuery?

2008-05-19 Thread Michael Geary
NOW you tell us you're an experienced programmer... :-) I don't know about this specific book or the other one you ordered, but a lot of these JavaScript introductions are written for people who've never written a line of code. For someone with programming experience, I recommend David

[jQuery] Re: second time jquery is included, kills previously called plugins

2008-05-19 Thread Shelane Enos
That was perfect. Thanks. On 5/19/08 8:00 AM, Ariel Flesler [EMAIL PROTECTED] wrote: //include first jQuery(function( $ ){ // $ will be the first jQuery $('#bodyframe').corner('tr'); }); // include second You can also use jQuery.noConflict(); Cheers -- Ariel

[jQuery] Re: Validate Plugin - Message customization with metadata

2008-05-19 Thread Jörn Zaefferer
Just use messages for embedding messages as metadata. The odds of adding a method messages are extremely low, and once its released, I'll update the docs accordingly. Jörn On Fri, May 16, 2008 at 7:05 PM, Dane [EMAIL PROTECTED] wrote: - Avoiding the conflict between a method messages and

[jQuery] Re: Autocomplete - access to events

2008-05-19 Thread Jörn Zaefferer
None of that is trivial out-of-the-box. The last point sounds like an optimization that isn't really necessary unless you experienced an actual performance hit. The second one isn't too hard to implement: Take a look at the source, around this line:

[jQuery] cluetip plugin and IE6

2008-05-19 Thread cfdvlpr
Has anyone else noticed that in IE6, select menus show up in front of the cluetip? Is there a fix for this?

[jQuery] Re: I have a nice text accordion menu, but I just need a little assistance.

2008-05-19 Thread tegansnyder
Resolved. What I had to do is: jQuery('#theMenu').activate(0); jQuery('#xtraMenu').activate(0); Activate the first top level first Then activate the sublevel. Thanks for your help. On May 19, 11:58 am, ripple [EMAIL PROTECTED] wrote: Ok so your accordion's are being set on

[jQuery] Re: Autocomplete - access to events

2008-05-19 Thread Jörn Zaefferer
Ok, that makes sense. Well, the same code is responsible for creating and managing that list. Optimizing that isn't trivial, as it wouldn't have much use when you have a few autocompletes on one page where the data has no overlap. Jörn On Mon, May 19, 2008 at 8:22 PM, rolfsf [EMAIL PROTECTED]

[jQuery] Re: cluetip plugin and IE6

2008-05-19 Thread Theodore Ni
Include the bgiframe plugin in your head section: http://plugins.jquery.com/project/bgiframe On Mon, May 19, 2008 at 2:13 PM, cfdvlpr [EMAIL PROTECTED] wrote: Has anyone else noticed that in IE6, select menus show up in front of the cluetip? Is there a fix for this? -- Ted

[jQuery] Very basic animation of an image is jerky (not smooth). Am I doing something wrong?

2008-05-19 Thread Ariel Barreiro
I am new to jquery but an experience developer. Here's the code actually running: http://guilespi.dyndns.org/jquery/bounceimage/ CSS: http://guilespi.dyndns.org/jquery/bounceimage/bounce.css JS: http://guilespi.dyndns.org/jquery/bounceimage/bounce.js The first vector is generally very jerky.

[jQuery] Tablesorter plugin problems with zebra stripes

2008-05-19 Thread asle
Hi The tablesorter 2.0 plugin is very nice and works great but I don´t really get how the zebra widget works. I do not get alternate colors on the table. I have a style for .odd and .even in CSS. I looked at the demos and it seems that the TRs are assigned odd and even but that does not happen

[jQuery] Re: jscrollPane scroll to can't find first element

2008-05-19 Thread pedalpete
Thanks Ariel, I forgot to mention, but I had also tried the [0].scrollTo, and that didn't work either. I've also just tried [code] var firstList = $('#holder .list:first'); $(#holder).jScrollPane(function(response){ (#holder).scrollTo(firstList);

[jQuery] Re: Very basic animation of an image is jerky (not smooth). Am I doing something wrong?

2008-05-19 Thread ripple
FYI. Fails to execute in IE 6. Ariel Barreiro [EMAIL PROTECTED] wrote: I am new to jquery but an experience developer. Here's the code actually running: http://guilespi.dyndns.org/jquery/bounceimage/ CSS: http://guilespi.dyndns.org/jquery/bounceimage/bounce.css JS:

[jQuery] Re: jCarousel - Has anyone implemented link anchors?

2008-05-19 Thread Ariel Flesler
You can do that by combining LocalScroll[1] and SerialScroll[2] [1]http://flesler.blogspot.com/2007/10/jquerylocalscroll-10.html [2]http://flesler.blogspot.com/2008/02/jqueryserialscroll.html Note that changing the address bar will scroll the window, unless the id/name doesn't exist. -- Ariel

[jQuery] tooltip data?

2008-05-19 Thread Chris Hall
Does anyone know if a plugin exists that can display a tooltip from information received via ajax or from the output of a javascript function? I see a few that use ajax but I'm unable to modify them to also display tooltip data from a javascript function. Many thanks for the help.

[jQuery] Atribute of picutre

2008-05-19 Thread [EMAIL PROTECTED]
Hi, I would like to know how to capture atributes of a picture using jquery? (Atributes of picture no of tag) Atributes like width and height.. Thanks

[jQuery] atributes of picture.

2008-05-19 Thread [EMAIL PROTECTED]
Hi, I would like to know how to capture atributes of a picture using jquery? (Atributes of picture and no of tag) Atributes like width and height Thanks...

[jQuery] Atribute of picutre

2008-05-19 Thread Bruno Eustáquio F. Andrade
Hi, I would like to know how to capture atributes of a picture using jquery? (Atributes of picture no of tag) Atributes like width and height.. Thanks

[jQuery] Re: submit event confusion

2008-05-19 Thread August Lilleaas
Thanks a lot mister, that event was exactly what I needed, everything works smoothly now =) On May 19, 7:01 pm, Mike [EMAIL PROTECTED] wrote: $(this).submit(function(){     $(this).find(:input.unclicked).each(function(){        this.value = ;     });     $.post(this.action,

[jQuery] OT: Firefox 3 RC1 for Mac

2008-05-19 Thread Shelane
Is there a way to install Firefox 3 RC1 without affecting FF2 on a Mac. The release notes have this message: Please note that installing Firefox 3 will overwrite your existing installation of Firefox on Mac OS X and Linux. I'm guessing that's if you simply install it into the Applications

[jQuery] Re: OT: Firefox 3 RC1 for Mac

2008-05-19 Thread Jake McGraw
Check out http://ejohn.org/blog/sexy-firefox-3/ - jake On Mon, May 19, 2008 at 4:18 PM, Shelane [EMAIL PROTECTED] wrote: Is there a way to install Firefox 3 RC1 without affecting FF2 on a Mac. The release notes have this message: Please note that installing Firefox 3 will overwrite your

[jQuery] Re: Autocomplete - is bgiframe required?

2008-05-19 Thread Jörn Zaefferer
Fixed in http://dev.jquery.com/changeset/5633 Jörn On Mon, May 19, 2008 at 9:08 PM, Jörn Zaefferer [EMAIL PROTECTED] wrote: Thanks for the ticket Aaron, gonna fix that asap. Jörn On Sat, May 17, 2008 at 4:24 PM, Aaron Barker [EMAIL PROTECTED] wrote: I just submitted a bug on this a few

[jQuery] [validate] submit although validation fails

2008-05-19 Thread juro
Hi, I am still struggeling with the my problem with the form although the validation fails. I believe that this is because I have the action attribute defined in the form. Can this cause the form to be submitted although not validated?

[jQuery] Modal overlay for specific page section

2008-05-19 Thread Jake McGraw
Hello all, I'd like to know if a jQuery plugin exists that allows for creating a modal overlay for a specific element of a page (say a DIV). The overlay would completely cover the section and prevent click-throughs or any other interaction with the elements within the section. Note: I've seen

[jQuery] Multiple Load Callback

2008-05-19 Thread FreeKill
Hi, I'm thinking there is something I'm just overlooking, but I hope someone can help... I have a set of load calls that are each made at document load: $(#div1).load( scripts/generateA.php, {VAR: var} ); $(#div2).load( scripts/generateB.php, {VAR: var} ); $(#div3).load( scripts/generateC.php,

[jQuery] Re: Modal overlay for specific page section

2008-05-19 Thread Alexandre Plennevaux
sure jake, there is the excellent blockUI plugin http://www.malsup.com/jquery/block/ On Mon, May 19, 2008 at 10:45 PM, Jake McGraw [EMAIL PROTECTED] wrote: Hello all, I'd like to know if a jQuery plugin exists that allows for creating a modal overlay for a specific element of a page (say a

[jQuery] Re: Multiple Load Callback

2008-05-19 Thread Alexandre Plennevaux
here is how i would try it, simply using the load() function built-in callback parameter $(#div1).load( scripts/generateA.php, {VAR: var} ,function(){ $(#div2).load( scripts/generateB.php, {VAR: var}, function(){ $(#div3).load( scripts/generateC.php, {VAR: var}, function(){ $(#div4).load(

[jQuery] Re: Modal overlay for specific page section

2008-05-19 Thread Jake McGraw
Gawd, I am one lazy developer, Mike goes through the trouble of creating a well laid out site with plenty of tutorials and I totally miss Element Blocking. Thanks Alexandre + Mike! - jake On Mon, May 19, 2008 at 4:49 PM, Alexandre Plennevaux [EMAIL PROTECTED] wrote: sure jake, there is the

[jQuery] Re: Modal overlay for specific page section

2008-05-19 Thread Alexandre Plennevaux
well Jake, even the greatest jquery plugins need real-world examples to advocate their usefulness, so that other users like you can be aware of it. If at all possible, return the favour, and make sure to send Mike a URL of your real world use of his plugin can be found. Cheers, a. On Mon, May

[jQuery] Re: Multiple Load Callback

2008-05-19 Thread Hamish Campbell
This has come up a few times - pretty sure there isn't a super clean way of doing it, but I'd probably prefer something like this: $(#div1).load( scripts/generateA.php, {VAR: var}, checkLoaded ); $(#div2).load( scripts/generateB.php, {VAR: var}, checkLoaded ); $(#div3).load(

[jQuery] Re: Tooltips

2008-05-19 Thread Jörn Zaefferer
I've have something similar as a plugin on a project. Its not polished at all, but already works with keyboard events (reacts to focus/blur instead of click). If interested, I'll upload the current version to give you a starting point. Jörn On Sun, May 18, 2008 at 11:37 AM, MartinS [EMAIL

[jQuery] Re: [AutoComplete]

2008-05-19 Thread Jörn Zaefferer
Rather undocumented: The formatItem-option can be used as a filter. If it returns false for a value (instead of the formatted value), the value isn't displayed. Jörn On Sun, May 18, 2008 at 9:36 PM, ChrisLongden [EMAIL PROTECTED] wrote: Hi, I am using the brilliant autocomplete

[jQuery] Re: Tooltips

2008-05-19 Thread Jörn Zaefferer
Actually the code is already here: http://dev.jquery.com/view/trunk/plugins/tooltip/jquery.formtip.js with ugly css: http://dev.jquery.com/view/trunk/plugins/tooltip/jquery.formtip.css Requires the delegate plugin: http://dev.jquery.com/view/trunk/plugins/delegate/jquery.delegate.js Jörn On

[jQuery] Re: OT: Firefox 3 RC1 for Mac

2008-05-19 Thread Collin Allen
Firefox 2 and 3 can co-exist so long as their app bundles are in separate places (or even just named differently in the same place). For example, I have FF 2.0 in /Applications, and FF 3.0rc1 in ~/ Applications/, my user's apps folder. They share the same profile, so you'll be doing a lot of

  1   2   >