[jQuery] Re: cluetip question

2008-01-08 Thread Shawn
Thanks for the kudo's Karl. I've always felt obligated (or is that obliged) to give back what I myself have received. In this case is the help/mentoring/support the community provides. So I help out where I can. I just hope I'm not way off on my postings.. :) But fully expect to be

[jQuery] Re: jQuery cycle not working??

2008-01-08 Thread Ash
Sorry I have changed it for the unpacked version now. Could you or anyone else shed some light on to it for me please? Ash On Jan 7, 6:07 pm, Mike Alsup [EMAIL PROTECTED] wrote: The curvycorners plugin is causing cycle to fail. But I can't see why because the code is packed. Mike On

[jQuery] add changing URL string to address for AJAX a la Gmail 2

2008-01-08 Thread Scott Hulbert
Hi everyone, I'm working on a simple project and I'm going to use jQuery's .load function to switch between content pages so that the page does not have to unload and reload. I'm doing this because my page needs a flash music player on it and this allows for uninterrupted music. I'd like a way to

[jQuery] Re: [ANNOUNCE] Cornerz - Bullet Proof Curved Corners using Canvas/VML

2008-01-08 Thread Andre Meyer
Just a thought: could this be expanded into something like dojox.gfx? Would be awesome! thanks André http://dojotoolkit.org/projects/dojox

[jQuery] jQuery Form: document.forms.submit not working :(

2008-01-08 Thread Maik Kennison
Hello, I have the simple form like script type=text/javascript // wait for the DOM to be loaded $(document).ready(function() { $('#myform').ajaxForm(function() { alert(Thank you for your comment!); }); }); /script and form

[jQuery] Re: keyboard sortable list

2008-01-08 Thread MaSTeRMinD
Thanks i already have a keyboard handler. I guess that i will try to combine it with this http://interface.eyecon.ro/docs/sort It's the closest to what i need.

[jQuery] Re: Loading animation when waiting JQuery.post() to return

2008-01-08 Thread rics
I will try both. I want to do it from zero at least once, to learn... :D Thanks! rics On Jan 7, 8:15 pm, Josh Nathanson [EMAIL PROTECTED] wrote: I think what you might be after are ajaxStart and ajaxStop: http://docs.jquery.com/Ajax/ajaxStart#callback

[jQuery] Re: [ANNOUNCE] Cornerz - Bullet Proof Curved Corners using Canvas/VML

2008-01-08 Thread Peter Bengtsson
The xhtml validator cries blood because of the xml tag in the middle of everything. Any nicer way to put that xml tag in and still be certain it works in IE6? (I can't test this myself since I don't have easy access to an emulator or windows computer) On 07/01/2008, weepy [EMAIL PROTECTED]

[jQuery] Re: [ANNOUNCE] Cornerz - Bullet Proof Curved Corners using Canvas/VML

2008-01-08 Thread Olaf Bosch
Peter Bengtsson schrieb: The xhtml validator cries blood because of the xml tag in the middle of everything. Any nicer way to put that xml tag in and still be certain it works in IE6? This is simple: !--[if IE] stylev\: * { behavior: url(#default#VML);display:inline-block; }/style

[jQuery] How to change contextmenu-plugin to trigger on left-click

2008-01-08 Thread Netcrawle
Hi! I've tried to solve this myself, and seeked help on the IRC-channel, but the problem seems to be hard to overcome. I've implementet the contextmenu-plugin ( http://www.trendskitchens.co.nz/jquery/contextmenu/jquery.contextmenu.r2.js ) on a site, and the client has fallen in love with it and

[jQuery] Re: [ANNOUNCE] Cornerz - Bullet Proof Curved Corners using Canvas/VML

2008-01-08 Thread weepy
The IE works not perfect :( What problems are you having specifically? I know there is a subpixel rendering problem. The element itself holds the canvas or VML. It can be whatever you want - whether it's invalid xml or not. No plans for expansion. I like to keep things lean and mean : ) -

[jQuery] Re: [ANNOUNCE] Cornerz - Bullet Proof Curved Corners using Canvas/VML

2008-01-08 Thread weepy
The xhtml validator cries blood because of the xml tag in the middle of everything. Any nicer way to put that xml tag in and still be certain it works in IE6? I plan to put this into the plugin itself, which would sidestep this problem

[jQuery] $('#foo').css() - to return all styles of the element?

2008-01-08 Thread R. Rajesh Jeba Anbiah
My google search got to be vain; I was searching how to find style rules for the element like: $('#foo').css() to return something like: background: red; font: Arial Is there anyway? TIA -- ?php echo 'Just another PHP saint'; ? Email: rrjanbiah-at-Y!comBlog:

[jQuery] load method doesn't work with amp; and doesn't validate

2008-01-08 Thread [EMAIL PROTECTED]
When loading an url containing querystrings with jQuery's load method I first tried amp; but since that doesn't work, I'm now using . The problem is, now the page doesn't validate XHTML 1.0 transitional. Any suggestions?

[jQuery] Getting JQuery to work with svg file

2008-01-08 Thread aldur
I have a svg file that is a map viewer for my website. its a php file that returns a SVG snap shot of the world map I've gotten zoom in and out and pan working from the control panel but I want to embed the SVG into a page and have it load the new map as an AJAX load. my problem is that it

[jQuery] Trouble with .children in IE

2008-01-08 Thread Jentulman
I've a peice of code that is working fine for me in FF but errors out in IE 6 and 7. I'm using the impromptu and corner plugins, although I don't think the error is related to them. script type=text/javascript availpoints = 500;

[jQuery] Re: [ANNOUNCE] Cornerz - Bullet Proof Curved Corners using Canvas/VML

2008-01-08 Thread Erik Beeson
Your choice of colors aside, this plugin looks fantastic! Very smooth. If this had gradients and drop shadows, I could replace my photoshop guy with it :) --Erik On 1/7/08, weepy [EMAIL PROTECTED] wrote: Hi I'd like to announce my latest jQuery plugin. I hope you'll find it useful.

[jQuery] Re: [ANNOUNCE] Cornerz - Bullet Proof Curved Corners using Canvas/VML

2008-01-08 Thread Olaf Bosch
weepy schrieb: The IE works not perfect :( What problems are you having specifically? I know there is a subpixel rendering problem. I make a Screen, I work offline: http://olaf-bosch.de/bugs/jquery/cornerz.gif The element itself holds the canvas or VML. It can be whatever you want -

[jQuery] Re: [ANNOUNCE] Cornerz - Bullet Proof Curved Corners using Canvas/VML

2008-01-08 Thread Andy Matthews
You could probably simulate a drop shadow with some creative HTML. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Erik Beeson Sent: Tuesday, January 08, 2008 8:19 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: [ANNOUNCE] Cornerz - Bullet Proof Curved

[jQuery] jquery remove() not removing

2008-01-08 Thread justinteractive
Hi folks, I'm using remove() to remove a list, then re-creating a list using the same id. Remove does not appear to be actually removing the instance. If I check for the element, it returns true, but if I try to work with it nothing happens? Firebug shows no evidence of the list either. Anyone

[jQuery] Min-height fix? Plugin

2008-01-08 Thread Chris J. Lee
I'm having problems trying to get the min-height of 100% to work on all browsers consistently. Anyone know if theres a jquery plugin for this?

[jQuery] Re: jQuery API extension for Dreamweaver

2008-01-08 Thread tlphipps
This rocks! Thanks so much for putting this together! On Jan 4, 7:08 pm, Chris Charlton [EMAIL PROTECTED] wrote: BETA:http://xtnd.us/download/dreamweaver/jquery/ Works withDreamweaverMX (6), 7, 8, and CS3 (9). Provides the jQuery API via code hints and snippets inDreamweaver'scode view.

[jQuery] Re: Can JQuery support iCab 3 (for legacy Mac OS9)

2008-01-08 Thread John Resig
Nope, definitely not. We already don't support anything less than Safari 2 - or IE 5. The only Mac-based browsers we support are Safari 2 + 3, Firefox 2, and Opera 9. --John On Jan 7, 2008 11:49 PM, howa [EMAIL PROTECTED] wrote: We have some users still running OS9, I would like to know if

[jQuery] Re: [ANNOUNCE] Cornerz - Bullet Proof Curved Corners using Canvas/VML

2008-01-08 Thread weepy
div id=bla style=position:relative; CONTENTCONTENT CANVAS CANVAS CANVAS CANVAS /div Good point. The only reason i was doing this was because I wanted to pass the corners back as a return value. I'm not sure you can do with without a parent container. The problem

[jQuery] Re: jQuery API extension for Dreamweaver

2008-01-08 Thread Leandro Vieira Pinho
Great Man, I have downloaded in testing it. Regards On Jan 4, 11:08 pm, Chris Charlton [EMAIL PROTECTED] wrote: BETA:http://xtnd.us/download/dreamweaver/jquery/ Works with Dreamweaver MX (6), 7, 8, and CS3 (9). Provides the jQuery API via code hints and snippets in Dreamweaver's code view.

[jQuery] Re: MooFlow: Carousel of sorts

2008-01-08 Thread Ty
Turns out there is a jquery deal-i-o already, it's sort of just the raw version compared to this mooflow: Of course everyone's heard of these guy's: http://interface.eyecon.ro/development/demos/carousel.html Thread to discussion of the 3d carousel:

[jQuery] Re: [ANNOUNCE] Cornerz - Bullet Proof Curved Corners using Canvas/VML

2008-01-08 Thread Andy Matthews
Weepy... I was kidding. You get square corners if you don't do anything. That's the default display. I was just messing around with you. ;) -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of weepy Sent: Tuesday, January 08, 2008 9:45 AM To:

[jQuery] Re: add changing URL string to address for AJAX a la Gmail 2

2008-01-08 Thread Sam Collett
You may find the history plugin to be of use (not sure if there is a newer version as that page hasn't been updated for a while): http://stilbuero.de/jquery/history/index.html On Jan 8, 6:19 am, Scott Hulbert [EMAIL PROTECTED] wrote: Hi everyone, I'm working on a simple project and I'm going

[jQuery] Re: Sever Push - live site

2008-01-08 Thread coughlinsmyalias
Thank you Morgan for your reply, You are correct, the site: You can add a word via the form, it calls, add.php You can drag to the delete box to delete from the database, it calls, delete.php When you drag a word, on the STOP event it will send the, ID, word name, x, y coods to the database, via

[jQuery] Re: jQuery cycle not working??

2008-01-08 Thread Ash
What do you mean? Sorry Javascript is not a strong point of mine. On Jan 8, 1:42 pm, Mike Alsup [EMAIL PROTECTED] wrote: I'm not sure where the conflict is, but if you call cycle after you call corner (instead of before) then it seems to work fine. Mike On Jan 8, 2008 4:43 AM, Ash [EMAIL

[jQuery] Re: add changing URL string to address for AJAX a la Gmail 2

2008-01-08 Thread Morgan Allen
Give the history plugin a look, this will also allow you to get an ajaxish back button. http://www.mikage.to/jquery/jquery_history.html On Jan 7, 2008 10:19 PM, Scott Hulbert [EMAIL PROTECTED] wrote: Hi everyone, I'm working on a simple project and I'm going to use jQuery's .load function

[jQuery] JQuery UI Dialog not working

2008-01-08 Thread Jason Levine
I'm working on a new website that's going to heavily rely on JQuery, but I can't get the UI Dialog code to work. To simplify matters, I took the HTML code from the documentation's example and modified it to work with local scripts. It winds up failing with my local copy of JQuery. Here's the

[jQuery] Re: How to change contextmenu-plugin to trigger on left-click

2008-01-08 Thread Dan G. Switzer, II
I've tried to solve this myself, and seeked help on the IRC-channel, but the problem seems to be hard to overcome. I've implementet the contextmenu-plugin ( http://www.trendskitchens.co.nz/jquery/contextmenu/jquery.contextmenu.r2.js ) on a site, and the client has fallen in love with it and how

[jQuery] Re: Clone dont work. Why?

2008-01-08 Thread yabado
Antonio, I am trying something similar. I copied your code but it does not work. Is there something missing from the post? On Dec 16 2007, 9:44 am, Antonio Jozzolino [EMAIL PROTECTED] wrote: Everything works fine now. Thanks a lot! html         div class=add-more                 label

[jQuery] Re: jQuery cycle not working??

2008-01-08 Thread Mike Alsup
I mean the order in which the two plugins are invoked. This is what you have and does not work: $(mySlideShow).cycle(); $(myRoundCorners).corner() but calling them in the opposite order does work: $(myRoundCorners).corner() $(mySlideShow).cycle(); I'm not familiar with the curvycorner code

[jQuery] Watch plugin?

2008-01-08 Thread traunic
This blog post http://www.neilmix.com/2008/01/06/beyond-dom/ was linked from Ajaxian today I posted a comment about using the javascript watch method without being wise enough to verify it's rather limited implementation. Is there a way to work around this? I can see where $

[jQuery] thickbox question

2008-01-08 Thread Eridius
is there a way to trigger thickbox to popup without any clicking. I tried $(#id').trigger('click') but that did not work. -- View this message in context: http://www.nabble.com/thickbox-question-tp14695419s27240p14695419.html Sent from the jQuery General Discussion mailing list archive at

[jQuery] File upload with AJAX

2008-01-08 Thread Jimmy Neph
Hello people. I want to know if is possible to send a file using the Ajax method. If it is possible, how I do this? Thanks!!

[jQuery] Re: [ANNOUNCE] Cornerz - Bullet Proof Curved Corners using Canvas/VML

2008-01-08 Thread timothytoe
What problems are you having specifically? I know there is a subpixel rendering problem. I'm assuming the subpixel rendering is what is causing the ugly black lines on the left and right side of the border:1 display: inline example. I'd probably use this if the IE problem gets fixed. Very

[jQuery] toggle function on checkbox

2008-01-08 Thread Jeff
I'm having a problem with toggle() and was hoping someone could help me. Using the toggle function on a checkbox seems to have disabled the checkbox's ability to check on and off. a href=http://tinyurl.com/yo9onz;http://tinyurl.com/yo9onz/a My code: $(document).ready(function(){

[jQuery] Re: jQuery cycle not working??

2008-01-08 Thread Ash
That's fine. It works. Thanks for your help On Jan 8, 5:22 pm, Mike Alsup [EMAIL PROTECTED] wrote: I mean the order in which the two plugins are invoked. This is what you have and does not work: $(mySlideShow).cycle(); $(myRoundCorners).corner() but calling them in the opposite order

[jQuery] toggle function on checkbox

2008-01-08 Thread jpl80
I'm having a problem with toggle() and was hoping someone could help me. Using the toggle function on a checkbox seems to have disabled the checkbox's ability to check on and off. http://tinyurl.com/yo9onz http://tinyurl.com/yo9onz My code: $(document).ready(function(){

[jQuery] Re: Cornerz - Bullet Proof Curved Corners using Canvas/VML

2008-01-08 Thread Aaron Barker
Very cool. One thing I noticed is that you can not select text where it overlaps the canvas. This is easily seen in the bottom left corner of the page, but can be seen at the top if you make the window narrow enough. It does this in FF and Saf on OSX. I have no idea how canvas works, so this

[jQuery] checkbox and toggle function

2008-01-08 Thread jpl80
Using toggle() with a checkbox disables the checkbox's ability to check itself on and off. http://tinyurl.com/yo9onz http://tinyurl.com/yo9onz -- View this message in context: http://www.nabble.com/checkbox-and-toggle-function-tp14695370s27240p14695370.html Sent from the jQuery General

[jQuery] Re: how to write my own jquery plugin ?

2008-01-08 Thread Eric Martin
This is a good place to start: http://www.learningjquery.com/2007/10/a-plugin-development-pattern http://docs.jquery.com/Plugins/Authoring -Eric On Jan 8, 8:04 am, TiGeRWooD [EMAIL PROTECTED] wrote: Hello, Anybody knows where can I find a doc about my title ? Thanks in advance. Arn.

[jQuery] How to set up a callback on a function I've made?

2008-01-08 Thread rics
Hello people, How can I force some code to run only when the execution of other function finish? Look my code: function loading() { $(#ajaxContent).slideToggle(normal, function() { $(#ajaxLoader).toggle(); }); }

[jQuery] Re: Trouble with .children in IE

2008-01-08 Thread Jentulman
I've solved this one. The problem was that I was assigning javascript variables with the same names as element ID's which it turns out IE really doesn't like. Cheers to anyone that had started looking at the problem.

[jQuery] Re: Cycle Plugin Question

2008-01-08 Thread Mike Alsup
I'm working on a before callback function and I'd like to access the current slide index. I'd like to know what slide number is coming up. As the new slide is called, I want to add a class to the corresponding pager element so it appears active. Make sense? The Cycle Plugin does this for

[jQuery] Re: jQuery 1.2.2? btw...

2008-01-08 Thread [EMAIL PROTECTED]
LOL! jQuery 1.2.2 FTW!!! XD On Jan 8, 12:53 am, polyrhythmic [EMAIL PROTECTED] wrote: On Jan 7, 8:27 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I'm using the beta and it's much more performant than the 1.2.1 and I got no bugs so far... some intensive js scripts have decreased my

[jQuery] Re: Cornerz - Bullet Proof Curved Corners using Canvas/VML

2008-01-08 Thread weepy
I'm assuming the subpixel rendering the ugly black lines on the left Yes exactly. But its only really an issue with fluid layouts as it only occurs when the width is an odd number. So it's fine to use otherwise. Jonah

[jQuery] Re: thickbox question

2008-01-08 Thread Eridius
nvm, trigger seems to work now, must has had a type of some sort Eridius wrote: is there a way to trigger thickbox to popup without any clicking. I tried $(#id').trigger('click') but that did not work. -- View this message in context:

[jQuery] Re: JQuery UI Dialog not working

2008-01-08 Thread Richard D. Worth
Change script type=type/javascript src=JavaScript/jquery-1.2.2b2.js/script to script type=text/javascript src=JavaScript/jquery-1.2.2b2.js/script Also, you'll want to put the flora (theme) class on the containing element, in this case the body. - Richard On Jan 8, 2008 10:54 AM, Jason Levine

[jQuery] Re: How to set up a callback on a function I've made?

2008-01-08 Thread Cesar Iduarte
On Jan 8, 2008 12:38 PM, rics [EMAIL PROTECTED] wrote: Hello people, How can I force some code to run only when the execution of other function finish? Look my code: function loading() { $(#ajaxContent).slideToggle(normal, function() {

[jQuery] Re: File upload with AJAX

2008-01-08 Thread Mike Alsup
Technically, no, you can not upload files using ajax. But the Form Plugin supports this in a manner that appears to use ajax. http://www.malsup.com/jquery/form/#code-samples Mike On Jan 8, 2008 11:35 AM, Jimmy Neph [EMAIL PROTECTED] wrote: Hello people. I want to know if is possible to

[jQuery] Re: Cornerz - Bullet Proof Curved Corners using Canvas/VML

2008-01-08 Thread weepy
acutally i have a fix for this - will upload tomorrow On Jan 8, 7:15 pm, weepy [EMAIL PROTECTED] wrote: I'm assuming the subpixel rendering the ugly black lines on the left Yes exactly. But its only really an issue with fluid layouts as it only occurs when the width is an odd number. So

[jQuery] Re: jquery remove() not removing

2008-01-08 Thread Cesar Iduarte
Still having the problem ? On Jan 8, 2008 9:58 AM, David McFarland [EMAIL PROTECTED] wrote: On Jan 8, 2008, at 7:07 AM, justinteractive wrote: Hi folks, I'm using remove() to remove a list, then re-creating a list using the same id. Remove does not appear to be actually removing

[jQuery] Re: toggle function on checkbox

2008-01-08 Thread Alessandro Feijó
Why dont you use .click trigger? Something like $(#precheck).click( function () { $(.preregbox).toggle('slow'); }, ); On Jan 8, 2008 4:05 PM, jpl80 [EMAIL PROTECTED] wrote: I'm having a problem with toggle()

[jQuery] Synchronous JSONP

2008-01-08 Thread Glen Lipka
Right now in 1.2.1 the JSONP method uses an asynchronous call to do it's thing. This sometimes causes a problem when we are sending a call about a click event on a link. The page unloads before the JSONP is finished. Changing it to be optional (async or synchronous) helps fix that problem. Code

[jQuery] Re: toggle function on checkbox

2008-01-08 Thread David McFarland
$(document).ready(function(){ $(#precheck).toggle( function () { $(.preregbox).show('slow'); }, function () { $(.preregbox).hide('slow'); } ); }); I've had that problem too and switched to this structure: $('input#precheck').click(function() {

[jQuery] Re: How to set up a callback on a function I've made?

2008-01-08 Thread rics
I did it using ajaxStart() and ajaxStop(), but I still want to know if I can set a callback to a custom function, for learning reasons. If you can help, thanks. :D Here is the final code... $(#ajaxContent).ajaxStart(function(){ $(this).slideToggle(normal);

[jQuery] Re: How to set up a callback on a function I've made?

2008-01-08 Thread Hamish Campbell
To clarify what Cesar said, the loading function _has_ finished executing (ie, modifying the DOM). You need to preload any images first so they don't have download it when the function fires. eg: http://www.ilovejackdaniels.com/css/preloading-images-with-css/ On Jan 9, 8:40 am, Cesar Iduarte

[jQuery] Re: Cycle Plugin Question

2008-01-08 Thread kwsath
The Cycle Plugin does this for you.  The active pager element will have an activeSlide class assigned to it.  If you want to roll your own then you can get the index like this: function onBefore() {     var index = $(this).index();     // update controls... } Mike Thanks for the

[jQuery] Re: href attribute in ajax generated pages on IE

2008-01-08 Thread x0nix
Exactly the same problem here ... any workarounds found? On Jan 8, 1:11 pm, alexanmtz [EMAIL PROTECTED] wrote: Hi everyone, Im defeat a great problem to read the href attribute on IE. If I had something like this: $(.somelink).click(function(){ var path = $(this).attr(href); });

[jQuery] Re: Cycle Plugin Question

2008-01-08 Thread Mike Alsup
Oops, sorry about that. Try this inside the 'before' callback: var index = $(this).parent().children().index(this); Mike On Jan 8, 2008 2:49 PM, kwsath [EMAIL PROTECTED] wrote: The Cycle Plugin does this for you. The active pager element will have an activeSlide class assigned to it.

[jQuery] Re: href attribute in ajax generated pages on IE

2008-01-08 Thread Karl Swedberg
Have you tried var path = this.pathname; ? That should do it. However, I think either FF or IE includes the beginning slash while the other doesn't, so you'll probably have to use a replace() in there too. Try this: var path = this.pathname.replace(/^\//,'') --Karl _

[jQuery] Progress image swap

2008-01-08 Thread Trans
Hi-- I'm pulling my hair out trying to make this work. I want to change an image to an animated gif to indicate progress while I pull down some files via synchronous ajax, and then switch the image back to a static one when finished. Everything I try fails, invariably the animated gif doesn't

[jQuery] Re: Progress image swap

2008-01-08 Thread Josh Nathanson
You will want to put the line where you show the meter_off image, in the success callback from the ajax request. This will ensure the proper order of execution. Pseudo code: var myAjaxCall = function() { $.ajax({ success: function() {

[jQuery] Re: Synchronous JSONP

2008-01-08 Thread Benjamin Sterling
Glen, I have never done it, but I say a while back that you can use the jQuery.extend method to overwrite a default method. I will see if I can dig that up, but that may point you in the right direction in the mean time. On 1/8/08, Glen Lipka [EMAIL PROTECTED] wrote: Right now in 1.2.1 the

[jQuery] Re: Cycle Plugin Question

2008-01-08 Thread kwsath
Mike, I figured out a solution. I just needed to create the proper scope to index in. index = $(.spot div).index(this); where .spot is a container for the slides and each slide is in a div. Thanks.

[jQuery] Re: Progress image swap

2008-01-08 Thread Andy Matthews
Also, consider that your image might be taking a while to load. Consider preloading the image. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Benjamin Sterling Sent: Tuesday, January 08, 2008 3:34 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Progress

[jQuery] Re: How to change contextmenu-plugin to trigger on left-click

2008-01-08 Thread Netcrawle
On Jan 8, 5:42 pm, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Look for the line starting with: $(this).bind('contextmenu', The contextmenu is what is binding this to the right-click. Change contextmenu to click and it should work with a left click. -Dan Oh holy crap! I've been over that

[jQuery] Re: Progress image swap

2008-01-08 Thread Benjamin Sterling
This is untested but something like: var ajaxCalles = 16; $(#meter).attr(src,img/meter_on.gif) // change the src tag to the animate gif $.ajax({ url: 'myurl', success : function(){//do processing}, error: function(){/process error}, complete : function(){ ajaxCalles--; if(ajaxCalles == 0){

[jQuery] Re: jquery remove() not removing

2008-01-08 Thread McLars
Remove() does not delete elements. It only removes them from the DOM. I don't know where they go, but they do hang around somewhere. It's rather annoying, IMO. I have heard this may change in the next release, so removed elements are actually deleted. Does anyone know if this is true? Larry

[jQuery] clone item, then remove it?

2008-01-08 Thread yabado
I have seen examples of cloning items, but not how to remove them. Is this possible with jQuery? I like this example, but it is not built on JQ... http://host.sonspring.com/cloner/ Has anyone done this using JQ?

[jQuery] Re: jquery and safari

2008-01-08 Thread yabado
I think I did this to enable it... http://www.macosxhints.com/article.php?story=2007061303320554 On Jan 2, 10:31 am, Alexandre Plennevaux [EMAIL PROTECTED] wrote: hiYabado, can you tell me more about it? i found the script console log in safari, but it doesn't show any error. but i do not

[jQuery] Re: Progress image swap

2008-01-08 Thread Josh Nathanson
Any chance you can post a test page somewhere? It's a little hard to picture what's going on. -- Josh - Original Message - From: Trans [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Tuesday, January 08, 2008 2:13 PM Subject: [jQuery] Re: Progress image

[jQuery] Re: Progress image swap

2008-01-08 Thread Trans
On Jan 8, 4:46 pm, Benjamin Sterling [EMAIL PROTECTED] wrote: This is untested but something like: var ajaxCalles = 16; $(#meter).attr(src,img/meter_on.gif) // change the src tag to the animate gif $.ajax({ url: 'myurl', success : function(){//do processing}, error:

[jQuery] Re: Progress image swap

2008-01-08 Thread Benjamin Sterling
Trans: async: false means that the browser will lock up each request will not do it asynchronously, which means the code we provide will not work. Is there a reason you are doing it with async: false? On 1/8/08, Trans [EMAIL PROTECTED] wrote: On Jan 8, 5:23 pm, Josh Nathanson [EMAIL

[jQuery] Re: Progress image swap

2008-01-08 Thread Trans
On Jan 8, 5:23 pm, Josh Nathanson [EMAIL PROTECTED] wrote: Any chance you can post a test page somewhere? It's a little hard to picture what's going on. Here's a strip down rendition of exactly what I'm doing: function Mica() { this.tally = 18; this.types = ['htm', 'txt', 'xml',

[jQuery] Re: Progress image swap

2008-01-08 Thread Trans
On Jan 8, 5:36 pm, Benjamin Sterling [EMAIL PROTECTED] wrote: Trans: async: false means that the browser will lock up each request will not do it asynchronously, which means the code we provide will not work. Is there a reason you are doing it with async: false? Ah, so it's not refreshing

[jQuery] How to determine radio button state?

2008-01-08 Thread jarrod
I'd like to show or hide a table row depending on whether a certain radio button is checked. I can not use a $(theRadioButton).click( ... ) handler for several reasons. One of them is that I need to check the state when the page loads and show or hide the element accordingly. I'm selecting the

[jQuery] Re: How to set up a callback on a function I've made?

2008-01-08 Thread Cesar Iduarte
That could make it too :) And your code should work... just as I said before, It seems that urs callbacks are not working but it is 'cuse the latency of ur ajax request is too low (which is good) so ur loading appear and dissappear in a instant if the loading of the images have already finished.

[jQuery] jquery ui tabs (tabs 3) in conjunction with the new coda slider (1.1.1) troubles.

2008-01-08 Thread [EMAIL PROTECTED]
Hi there, I am using the jquery ui tabs (tabs 3) in conjunction with the new coda slider (1.1.1), and for some reason the coda slider only works on the first tab. Here's the demo: http://www.cpmv2.com/test2/ If anyone has any suggestions I would really appreciate it.

[jQuery] Re: How to determine radio button state?

2008-01-08 Thread Shawn
Or you can do if ($(input:checked, div#hide3aButton).length) { //do something } If the input/radio is checked, then it will be selected (length greater than zero) and you can do further things with it. If it's not, then nothing happens (empty selection set - length of zero). Shawn

[jQuery] Re: jquery remove() not removing

2008-01-08 Thread Walter E. Zegarra Sánchez
You can remove anything using: $(p).*remove*(); p is the tag you can remove from form. Exam. $(tr).remove(); it works, so if you want, you can put this into a for command atte. Walter E. Zegarra. 2008/1/8, McLars [EMAIL PROTECTED]: Remove() does not delete elements. It only removes

[jQuery] Why does this jquery operation still bind to the submit button?

2008-01-08 Thread rickcr
I'm confused why the bind to the submit button still takes place with: jQuery(:[EMAIL PROTECTED] != 'submit'], document.preAssessmentForm ).change( function() { setConfirmUnload(true); } ); this selector works fine (the 'submit' isn't selected which I can tell by iterating over the selection

[jQuery] Re: href attribute in ajax generated pages on IE

2008-01-08 Thread alexanmtz
Hi Karl, I never heard about the pathname property, but yeah, it works great. Very thanx for the solution, I accomplished it making a regular expression to extract the pathname, but this way works great and clean. Alexandre Magno Web developer http://blog.alexandremagno.net (brazilian blog of

[jQuery] Re: jquery ui tabs (tabs 3) in conjunction with the new coda slider (1.1.1) troubles.

2008-01-08 Thread Josh Nathanson
Without looking at the code, my guess would be ye olde must rebind event handlers when loading content via ajax issue. -- Josh - Original Message - From: [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Tuesday, January 08, 2008 3:09 PM Subject: [jQuery]

[jQuery] Re: Synchronous JSONP

2008-01-08 Thread Glen Lipka
I think my thought process on this was messed up anyway. Here is the use situation. We are using JSONP to send activity on pages to avoid cross-site scripting problems. One of those activities is clicking on a link. The problem is that the JSONP is asynchronous so that when the link is clicked,

[jQuery] [ANOUNNCE] Comet

2008-01-08 Thread Morgan Allen
I have been working on implementing the Bayeux protocol in jQuery and with the recent talk on the list about LIVE ajax and server pushing I thought now would be a good time to release the early work and start getting some feedback. It will work on Jettys Cometd Echo Demo. To get it to work, remove

[jQuery] Re: How to determine radio button state?

2008-01-08 Thread Shawn
Shoulda mentioned, some of this is covered here: http://jquery.open2space.com/node/15 Shawn jarrod wrote: I'd like to show or hide a table row depending on whether a certain radio button is checked. I can not use a $(theRadioButton).click( ... ) handler for several reasons. One of them

[jQuery] $('element').fn(); not working after adding html to DOM... wonder if anybody can help :O

2008-01-08 Thread [EMAIL PROTECTED]
ok... I call an ajax function, get the data and translate it into html markup and then add it to the DOM, i.e. div id=myDiv/div if I call $('#myDiv').nameOfFunction(); it will just not recognize the added markup :| I don't know if anybody is capable of helping, but hopefully somebody can!

[jQuery] jScrollPane.. maintaining position after expanding content

2008-01-08 Thread DingoNV
Hello, I am relatively new to jQuery and wasn't a javascript guru before i started it, so forgive me if the solution i am looking for is blindingly obvious in the end. i have a block of content that contains a bunch of collapsed divs. on clicking an icon, the related div expands to show more

[jQuery] Re: JQuery UI Dialog not working

2008-01-08 Thread Jason Levine
Thanks. It always seems to be the simple stuff that gives me the most trouble! As a side note, I found myself needing a feature that the UI Dialog script didn't support, so I added it. It's the ability to specify a function to be run when the dialog closes. To accomplish this, I changed the

[jQuery] Re: can only modify DOM via debugger

2008-01-08 Thread Jeffrey Kretz
It might be worth a shot to try jQuery functions rather than native functions. Something like this: $(document).ready(function() { $(a).click(function() { var coursename = $(this).attr('coursename'); var mydata = $.get(http://localhost:8080/course/; + coursename + /, {},