[jQuery] Re: jQuery tooltip doesn't work after UpdatePanel update?

2008-05-23 Thread vladv
THank you very much. I used pageLoad function for this, because it runs also on partial postbacks. On May 21, 6:38 am, steve_f [EMAIL PROTECTED] wrote: You need to hookup a callback using the ms ajax page request manager like so

[jQuery] Re: [validate] bug

2008-05-23 Thread Jörn Zaefferer
I'm currently wait for the result of the discussion about the change to attr. It looks like the 1.2.5 behaviour is intended - once that is settled, I'll update the validation plugin accordingly and release 1.3.1. About patches: I'd like to close down the issue part on plugins.jquery.com and

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

2008-05-23 Thread Jan Sorgalla
Hi, thats a bug. I fixed that in the current version. Jan On 19 Mai, 07:55, Jeff Kenny [EMAIL PROTECTED] wrote: 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

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

2008-05-23 Thread Jan Sorgalla
Hi, i fixed that in the current version. Jan On 19 Mai, 18:48, Jeff Kenny [EMAIL PROTECTED] wrote: 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

[jQuery] form plugin doesn't want to submit a file

2008-05-23 Thread andrea varnier
hi :) I have this form: form id=sub_immagini enctype=multipart/form-data method=post action=./../js/ajax/upload_files.php input type=hidden name=sub_tipo value=foto/ div class=materiale label for=new_foto_1File:/label input type=file

[jQuery] Re: A simple plugin to check if your browser supported by jQuery - Officially

2008-05-23 Thread Richard D. Worth
Browser support is a guarantee that the jQuery project/team makes. It's a promise to support, and a standard in testing. It does not mean that other browsers can't work, even fully. Adding a check like this, and encouraging its use would discriminate against many browsers that aren't in the

[jQuery] Re: A simple plugin to check if your browser supported by jQuery - Officially

2008-05-23 Thread Richard D. Worth
2008/5/23 howa [EMAIL PROTECTED]: On 5月23日, 下午1時19分, Danny [EMAIL PROTECTED] wrote: ...people who felt browser-sniffing was too evil to ever allow. People saying this are those who never read the jQuery sources. There's quite a big difference between testing that the client is a

[jQuery] Color animation on textarea

2008-05-23 Thread yabado
I am trying to apply a color animation to a textarea when text is appended to it. Here is what I have... HTML: textarea id=replytextarea JQ: $(#reply) .animate({backgroundColor:'red'}, fast) .append(\n+insertText+\n)

[jQuery] Re: Color animation on textarea

2008-05-23 Thread Liam Byrne
In order to animate colour, the browser needs to know in-between colours - e.g. fading from black to white goes through shades of grey There's a color (American spelling) plugin that will do the trick - just add it and your existing code should work.

[jQuery] Re: Some problem with latest version of Jquery Validator?

2008-05-23 Thread Jörn Zaefferer
Please stick with jQuery 1.2.3 until Validate 1.3.1 is released. Jörn On Thu, May 22, 2008 at 8:08 PM, vertical-align [EMAIL PROTECTED] wrote: Only had problems (this one and others) with Validate 1.3 when using jQuery 1.2.5.

[jQuery] Re: Color animation on textarea

2008-05-23 Thread yabado
Nice, but I thought this was built into JQ and did not require a plugin to work? On May 23, 7:32 am, Liam Byrne [EMAIL PROTECTED] wrote: In order to animate colour, the browser needs to know in-between colours - e.g. fading from black to white goes through shades of grey There's a

[jQuery] Re: Color animation on textarea

2008-05-23 Thread andrea varnier
On 23 Mag, 13:48, yabado [EMAIL PROTECTED] wrote: Nice, but I thought this was built into JQ and did not require a plugin to work? no, it is not :)

[jQuery] Re: pngFix or .width() problem

2008-05-23 Thread iZorg
I have got the same problem. It began since version 1.2.2. So, if you can, use the jQuery version 1.2.1

[jQuery] Re: New site, a simple custom store

2008-05-23 Thread peteshinners
Thanks for the feedback, Scott. You are definitely right about the hovering on the bottom navigation. Switched those back to regular 'hover' and it feels better. The bottom navigator isn't based on anything I've seen. So I'm really just making up how it should work. The scrollbar is a bit ugly

[jQuery] tablesorter pager and multiple tables problem

2008-05-23 Thread dbinaz
Seems tablesorter pager does not work if there is a table before the sorted table that I am not using the tablesorter on. I get c has no properties on line 46. If I only put in the one table in works as expected. Is there a way around this so it only sorts the specified table? Thanks, D

[jQuery] load() problem in IE7

2008-05-23 Thread Arun Kumar
I have a html page with two alerts and it's source is given below: html head script language=JavaScript src=test.js type=text/javascript script language=JavaScript type=text/javascript alert(Hi); /script /head body script language=JavaScript type=text/javascript alert(Hi); /script /body

[jQuery] Re: Select lists in 1.2.5

2008-05-23 Thread Photic
Aah, functionality change. Bummer. On May 22, 9:28 pm, Aaron Heimlich [EMAIL PROTECTED] wrote: $(#q).val(3); -- notice that I used a string, not an integer works. Seehttp://groups.google.com/group/jquery-dev/browse_thread/thread/e42d27...

[jQuery] Re: Cycle - per slide settings

2008-05-23 Thread jdenkaat
Mike, Sorry for the delay in responding! Thanks for that, I have set each individual image within the slide show using the method you described and a case statement, which seems to work! I understand that the transition change would be difficult, could you describe the problem further so that

[jQuery] Re: .load and take dom element

2008-05-23 Thread ontheclouds
up :( -- View this message in context: http://www.nabble.com/.load-and-take-dom-element-tp17409507s27240p17419932.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.

[jQuery] Re: Javascript breakout Game

2008-05-23 Thread ontologyonline
I think that ghost block is an unintended glitch :) The only thing I can think of that explains it is that array.splice does not work on removing the last element of an array. But even so, not sure whether I should fix it or keep it there for fun... David Decraene http://ontologyonline.org On

[jQuery] Re: Javascript breakout Game

2008-05-23 Thread David Decraene
Looks like my previous comment did not make it through: the invisible block is a small glitch, but perhaps it more fun to leave it in than to not to :) I think it has something to do with array.splice perhaps not allowing to splice the last element (not really sure otherwise). On May 22, 9:22

[jQuery] Add onclick attribute to a a link - Is it possible ?

2008-05-23 Thread dme69
Hello all, I love jquery but I'm really new to ajax and development (and english ;-) ). I want to add the attribute onclick on some link on my page : I found how to add a title for the link (for example), I can also change the color and some other things but in fact what I really want to do is

[jQuery] Re: [AutoComplete]

2008-05-23 Thread ChrisLongden
Has anyone taken the autocomplete functionality and created a Facebook messaging style interface where users can delete items they have added? I am just wondering how people have solved the fact that your hidden field, which stores the id's of selected items, does not get updated when the user

[jQuery] Re: growl for jquery

2008-05-23 Thread Mike Nichols
Maybe this could help http://www.stanlemon.net/projects/jgrowl.html On May 22, 8:12 pm, zoul0813 [EMAIL PROTECTED] wrote: darren, I'll look into adding that functionality -- I just recently got a mac again, I wrote the jQuery Growl plugin because I was inspired by the MooTools version

[jQuery] Achieving smoother animate()

2008-05-23 Thread fambi
We've recently implement an option in which our site's users can hide and show the left hand menu to make more space for the main content when necessary (e.g. huge tables). We've done this through the following code: $(#ScreenChange).toggle( function() {

[jQuery] Re: form plugin doesn't want to submit a file

2008-05-23 Thread Mike
$('#sub_immagini').ajaxForm(); if I submit it while it's empty it seems to work (with firebug I see the post request, even if I get no response, and that's strange), if I try to upload a file, it does nothing (the page is reloaded, as if there was no ajaxForm bind)... what am I doing

[jQuery] Tablesorter + hovering +maintaing old background

2008-05-23 Thread Cordan
Hi folks :) im pretty new to jQuery and after searching for an answer of my problem i'll try to post it here :) I am using Tablesorter with an hovering widget. As I am displaying some data that has a coloured background (based on their priority) I would like to keep that background colour

[jQuery] Form plugin problem - remote action

2008-05-23 Thread Pedro Mendonça
Hi, I have tried the ajax Form plugin. It works great if the email.php action is in the same server/folder. When I use a remote one, from another server, it just substitute the whole page on the browser by the remote email.php. It does send the email form, but show all the content I want to keep

[jQuery] Re: Add onclick attribute to a a link - Is it possible ?

2008-05-23 Thread steve_f
you need to use bind or click $('.view-field a').bind('click', function(){return confirm('sure ?')}); On May 23, 9:09 am, dme69 [EMAIL PROTECTED] wrote: Hello all, I love jquery but I'm really new to ajax and development (and english ;-) ). I want to add the attribute onclick on some link

[jQuery] Re: A simple plugin to check if your browser supported by jQuery - Officially

2008-05-23 Thread [EMAIL PROTECTED]
I agree that this is the danger of a jquery.supported() call--that us lazy programmers will use as our first line: if (jquery.supported) $(function() ... and other browsers--even ones that work--will be left out. They should still function, since we all use graceful degredation, but won't have

[jQuery] Re: New site, a simple custom store

2008-05-23 Thread Scott Sauyet
peteshinners wrote: The bottom navigator isn't based on anything I've seen. So I'm really just making up how it should work. The scrollbar is a bit ugly on it, but it is sure convenient for moving around, and also giving the user a bigger picture. I'm also making it up. I don't know that I've

[jQuery] Re: Hi!

2008-05-23 Thread Scott Sauyet
Netcrawle wrote: Turns out i've been a total moron when duplicating the original input-element - to a new anchor-element. I duplicated the ID as well. So the onclick was triggered it turns out, but wicket didn't do anything about it because it halted on behalf of 2 target elements instead of 1

[jQuery] Cycle plugin opacity

2008-05-23 Thread martinp
Hi I'm using the fade effect of the Cycle plugin to generate a slideshow with some text overlaid on the top. The box of text should have an opacity of 0.7. This works well in Safari/Firefox on a Mac, but in IE the box of text has 100% opacity. I tried to fix it using this code:

[jQuery] Re: Show/hide toggle hides form too...bah!

2008-05-23 Thread Ridge
Hm. Replaced my code with yours, and it's still toggling the form when its clicked. :( On May 22, 5:29 pm, Pyrolupus [EMAIL PROTECTED] wrote: You need to have your event handler handle things differently depending upon the specific child element that was clicked. For example:

[jQuery] Re: [validate] disabling onBlur validation on per field basis

2008-05-23 Thread Matti Bäckman
Thanks. This helped. On 20 touko, 20:27, Jörn Zaefferer [EMAIL PROTECTED] wrote: You can customize the onfocusout-option for that. Something like this: $(...).validate({         onfocusout: function(element) {                 if (element.name != someElementNameToExclude)                    

[jQuery] Re: Show/hide toggle hides form too...bah!

2008-05-23 Thread Karl Swedberg
This line: if ($tgt.not('form')) { //don't toggle when clicking the form! should be : if (!$tgt.is('form')) { //don't toggle when clicking the form! The first always returns the jQuery object, so it's always truthy. The second returns a boolean. Will be true if the target

[jQuery] Re: Cycle - per slide settings

2008-05-23 Thread Mike
I understand that the transition change would be difficult, could you describe the problem further so that I can 'have a go' at working around it. The problem is that each transition type has it's own requirements for where the slide should start, where it should end, what the z-indexes of

[jQuery] class animation

2008-05-23 Thread KidsKilla
Hi, everybody! Is there any plugin, that will animate from one css class to another one?

[jQuery] Re: [autocomplete] more control needed

2008-05-23 Thread Jörn Zaefferer
Using a json-backend is possible, but so far very badly documented and too complicated for such a common task. Until that gets improved, here is a demo to get you started: http://dev.jquery.com/view/trunk/plugins/autocomplete/demo/json.html For #2: There were other requests that also aimed at

[jQuery] Re: [validate] field 1 or field 2

2008-05-23 Thread Jörn Zaefferer
You can do that with a custom method: http://docs.jquery.com/Plugins/Validation/Validator/addMethod Untested: jQuery.validator.addMethod(phone, function() { return $(#mobile).val() || $(#work).val(); }, Please specify either work or mobile phone number); Jörn On Fri, May 23, 2008 at 12:12

[jQuery] Re: Form plugin problem - remote action

2008-05-23 Thread Mike
I have tried the ajax Form plugin. It works great if the email.php action is in the same server/folder. When I use a remote one, from another server, it just substitute the whole page on the browser by the remote email.php. It does send the email form, but show all the content I want to keep

[jQuery] Draggable - Add border while dragging

2008-05-23 Thread Liam Byrne
Is there an option within the draggable function to allow you to add a border to a cloned currently-being-dragged object, similar to the way that cursor works ? Thanks, Liam

[jQuery] Re: class animation

2008-05-23 Thread Richard D. Worth
Here's a related thread: http://groups.google.com/group/jquery-ui/browse_thread/thread/3e5e66b7f2cba521 The code (was Enchant) is now part of the jQuery UI (sister) project: http://ui.jquery.com/ list: http://groups.google.com/group/jquery-ui/ Here's the latest code:

[jQuery] Re: Draggable - Add border while dragging

2008-05-23 Thread Richard D. Worth
Draggable doesn't provide that option. Here's how you can do it: $(#foo).draggable({ start: function(e, ui) { $(ui.helper).addClass('dragging'); }, stop: function(e, ui) { $(ui.helper).removeClass('dragging'); } }); - Richard Richard D. Worth http://rdworth.org/

[jQuery] Re: Draggable - Add border while dragging

2008-05-23 Thread Liam Byrne
Absolutely perfect! Thanks Richard! :-) Richard D. Worth wrote: Draggable doesn't provide that option. Here's how you can do it: $(#foo).draggable({ start: function(e, ui) { $(ui.helper).addClass('dragging'); }, stop: function(e, ui) {

[jQuery] $(#mycarousel).jcarousel is not a function

2008-05-23 Thread TahoeKid
I keep getting this error when I try and load jcarousel with dynamic images. $(#mycarousel).jcarousel is not a function (no name)()istar.asp (line 30) e()jquery-1.js (line 11) e()jquery-1.js (line 11) e([function(), function()], function(), undefined)jquery-1.js (line 11) e()jquery-1.js (line

[jQuery] how to make a easy show/hide menu by JQUERY

2008-05-23 Thread 大连毕业设计
JUST LIKE MORE TOP OR LEFT MENU, like the top menu like this: http://golf-clubs.best-buys.cn or left menu like this: http://www.alibaba.com/ is it easy to do, can it easy to just write one line or two line codes do? thanks

[jQuery] Re: Show/hide toggle hides form too...bah!

2008-05-23 Thread Ridge
Karl, thanks. I modifed your line slightly to give it the same specificity as the preceding declaration (it wasn't working at all when it was just 'form'), and now the form isn't appearing at all on click! Here's the whole section: // Show/hide forms $('div#homepage_boxes

[jQuery] IE animation issues

2008-05-23 Thread bgthomson
Hi all, I've created (well, adapted) an accordian menu and also given it some fadeIn behaviour. It looks right in Firefox, but in IE, it does a couple of things I don't want: when it slides down, it also pushes the content below it down, and it flickers for a moment before the animation finishes.

[jQuery] [validate] adding a loading indicator for remote method

2008-05-23 Thread spetsacdc
I was wondering if anyone could help me/get me pointed in the right direction with making a loading gif come up when I am validating a username with ajax. I tried changing the class, but nothing happens. I changed this in the validate.js file: remote: function(value, element, param) {

[jQuery] Jquery Perfomance Question

2008-05-23 Thread Alexsandro_xpt
I don't know about jQuery(document).ready(function(){}); performance. But I wish to know somethings: Can I put lot of jQuery(document).ready(function(){...some js codes}); in some script tag instead just one jQuery(document).ready? Eg: script //eg with lot of DOM jquery

[jQuery] Return data from dimensions.js

2008-05-23 Thread teazer
I need to save the coordinates of a div to be able to return it to the same location and am having problems posting the offset from dimensions.js This $(.dragL).mouseup(function(e){ var stroke = $(this).attr(id); var coordsB = $(this).offset({ scroll: false });

[jQuery] .tableSorter - sorting from hidden values

2008-05-23 Thread A13thGuest
Is it possible to sort based on a custom attribute in a column? If so, how? Creating a hidden column with the values I need to sort by is not working out to be the best solution at this point. Thanks in advance.

[jQuery] Re: tablesorter pager and multiple tables problem

2008-05-23 Thread dbinaz
Ok, I figured it out. THere is a bug in the pager file. Under return this.each(function() { add this: if(!this.tHead || !this.tBodies) return; On May 22, 11:50 pm, dbinaz [EMAIL PROTECTED] wrote: Seems tablesorter pager does not work if there is a table before the sorted table that I am

[jQuery] Cluetip + jCarousel???

2008-05-23 Thread Maddlake
I have installed jCarousel on an ecommerce site, to display products. Don't see a way to display text links below and would like instead to have a tooltip on hover which would display the product description and price (ala Netflix). Content is coming into the page via Perl and CGI calls. I now

[jQuery] Xpath in frames

2008-05-23 Thread xunshirine
Hello. $ function works globally. But I need to use its xpath selector opportunity in subframes of a frameset html. How to reach subframes in a html and use xpath selectors with jquery to get subframe dom nodes? Thanks in advance.

[jQuery] Re: [validate] field 1 or field 2

2008-05-23 Thread AlexGrande.com
To see more custom methods go to a href=http://www.thetruetribe.com/ 2008/05/how-to-use-jquery-plugin-validation.htmlhttp:// www.thetruetribe.com/2008/05/how-to-use-jquery-plugin-validation.html/a On May 23, 9:39 am, Jörn Zaefferer [EMAIL PROTECTED] wrote: You can do that with a custom

[jQuery] Re: Jquery Perfomance Question

2008-05-23 Thread Karl Rudd
Yes. Put as many as needed. Karl Rudd On Sat, May 24, 2008 at 4:50 AM, Alexsandro_xpt [EMAIL PROTECTED] wrote: I don't know about jQuery(document).ready(function(){}); performance. But I wish to know somethings: Can I put lot of jQuery(document).ready(function(){...some js

[jQuery] datepicker select to update a div, and strange datepicker css issue

2008-05-23 Thread pedalpete
I just launched my first jquery site the other day, and I'm trying to make it so that selects a date from the datepicker, a div on the page gets updated with the selected date. Datepicker is launched from within a superfish menu However am having two problems. 1) when I use the code below, i

[jQuery] Re: Show/hide toggle hides form too...bah!

2008-05-23 Thread Wizzud
$('div#homepage_boxes div.col').click(function(event) { // only toggle if it was div.col or its H2 that was clicked... if ( this==event.target || $(event.target).is('h2') ){ $(this).siblings('.selected').andSelf().toggleClass('selected'); } return false; }); And you

[jQuery] Select attribute by checking more than one value

2008-05-23 Thread leggo-my-eggo
Hi, I'm new here, so forgive me if I'm missing something obvious, or violating etiquette. I'm trying the following code: jQuery('.entry a:has( img )[href$={.jpg || .gif || .png}]').not('.download').attr('rel', 'popupgallery').addClass('something'); What I want it to do is to find in .entry all

[jQuery] Re: Jquery Perfomance Question

2008-05-23 Thread Alexsandro_xpt
There aren't performance diference? On 23 maio, 18:46, Karl Rudd [EMAIL PROTECTED] wrote: Yes. Put as many as needed. Karl Rudd On Sat, May 24, 2008 at 4:50 AM, Alexsandro_xpt [EMAIL PROTECTED] wrote: I don't know about jQuery(document).ready(function(){}); performance. But I wish

[jQuery] Re: Show/hide toggle hides form too...bah!

2008-05-23 Thread Ridge
Oooh SO close Wizzud! Followed your instructions carefully, and set the height of the form equal to the height of div.col. The forms now toggle correctly, stay on when the user is inputting their zip, BUT (taking For Your Home, for example) doesn't submit when the Go button is clicked. It also

[jQuery] Re: Jquery Perfomance Question

2008-05-23 Thread Karl Rudd
Extremely small differences. If you're worried about the timing then I suggest doing some testing. Karl Rudd On 5/24/08, Alexsandro_xpt [EMAIL PROTECTED] wrote: There aren't performance diference? On 23 maio, 18:46, Karl Rudd [EMAIL PROTECTED] wrote: Yes. Put as many as needed. Karl