[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 + "/", {}, functi

[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 f

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

2008-01-08 Thread Karl Swedberg
Hi there, Please take a look at this FAQ page: http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_Ajax_request.3F Let us know if that doesn't answer your question. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On J

[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 info

[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

[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. 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! Would be really aw

[jQuery] can only modify DOM via debugger

2008-01-08 Thread knairb01
Hi I've got a problem. I'm running Firefox 2.0.0.11, Firebug 1.0, jQuery 1.2.1. I have the following code in a Genshi template for a toy TurboGears 2.0 app: $(document).ready(function() { $("a").click(function() { var coursename = $(this)[0].attributes['coursename'].nodeValue; var m

[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: Synchronous JSONP

2008-01-08 Thread Benjamin Sterling
Glen, I think I understand what you are saying, but not truly sure what full approach is. It sounds like you want to send some data to another site when the user clicks a link, like maybe the href of the link clicked. Not sure if the is considered JSONP, and bare with me on this one, but what I a

[jQuery] Re: clone item, then remove it?

2008-01-08 Thread Karl Swedberg
Do you mean removing an item that has been cloned and then inserted into the DOM? It's easy to do with .remove(), but you'll need to bind the event handler after the element has been inserted. Details here: http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_afte

[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] 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 j

[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)" Sent: Tuesday, January 08, 2008 3:09 PM Subject: [jQuery] jquery ui tabs (tabs 3)

[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 a

[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 r

[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] Re: How to determine radio button state?

2008-01-08 Thread Mike Alsup
>> if ($('input', 'div#hide3aButton').checked) { ... } You're close! if ($('input', 'div#hide3aButton')[0].checked) { ... }

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

2008-01-08 Thread jarrod
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 is that I need to check the state when the page loads > and show or hide the element ac

[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: 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 refre

[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" <[EMAI

[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', 'x

[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)" Sent: Tuesday, January 08, 2008 2:13 PM Subject: [jQuery] Re: Progress image swap On Jan 8, 4:

[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: 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

[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: 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

[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: toggle function on checkbox

2008-01-08 Thread Jeff Laiosa
This solved my problem. Thank you. On Jan 8, 2008 2:37 PM, Alessandro Feijó <[EMAIL PROTECTED]> wrote: > Why dont you use .click trigger? > > > Something like > > $("#precheck").click( > function () { > $(".preregbox").toggle('slow'); > }, >

[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 On

[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: Progress image swap

2008-01-08 Thread Trans
On Jan 8, 4:34 pm, "Benjamin Sterling" <[EMAIL PROTECTED]> wrote: > T, > Keep you head up, we have all felt that way. Thanks Benjamin and Josh. I'm frustrated but I'm determined too! :-) What you both suggest makes sense enough, but I don't just have a single file to pull down. I'm loading 16

[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: 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: Progress image swap

2008-01-08 Thread Benjamin Sterling
T, Keep you head up, we have all felt that way. What I normally do is something like: $("#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(){$("#me

[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() { $("#meter").attr("src","img/meter_off.gif"

[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 bec

[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 _ Kar

[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 assigne

[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("hre

[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

[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: 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: 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(f

[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. Cod

[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 possi

[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.

[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 tog

[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 actua

[jQuery] Re: JQuery UI Dialog not working

2008-01-08 Thread Richard D. Worth
Change to 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 <[EMAIL PROTECTED]> wrote: > > > I'm working on a new website that's going to heavily rely on JQuery, but I > can't get the UI Dialog

[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: http://www.nabble.com/thickbox-question-tp1

[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 thi

[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: 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. > > A

[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 Discu

[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

[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 m

[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 oppo

[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(){ $("#precheck").togg

[jQuery] Cycle Plugin Question

2008-01-08 Thread kwsath
I'm building a player with a pager and I'm having some trouble - my javascript ability is intermediate so I'm hoping someone can lend some advice. 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

[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. http://tinyurl.com/yo9onz";>http://tinyurl.com/yo9onz My code: $(document).ready(function(){ $("#precheck").tog

[jQuery] Re: load method doesn't work with "& amp;" and "&" doesn't validate

2008-01-08 Thread Michael MacDonald
[EMAIL PROTECTED] wrote: > When loading an url containing querystrings with jQuery's "load" > method I first tried "&" 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? > Did you try using %26 instead of the

[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] 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] 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 Nab

[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 $ ("#foo").watch(myVa

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

2008-01-08 Thread Jörn Zaefferer
TiGeRWooD schrieb: Hello, Anybody knows where can I find a doc about my title ? Check these: http://docs.jquery.com/Plugins/Authoring http://www.learningjquery.com/2007/10/a-plugin-development-pattern http://www.ok-cool.com/posts/read/19-jquery-for-programmers-part-1 Jörn

[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

[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 > >         >                 Empresas Coligadas o

[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

[jQuery] how to write my own jquery plugin ?

2008-01-08 Thread TiGeRWooD
Hello, Anybody knows where can I find a doc about my title ? Thanks in advance. Arn.

[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] 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 U

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

2008-01-08 Thread aldur
alert($("#foo").get(0).style) On 8 Jan, 13:37, "R. Rajesh Jeba Anbiah" <[EMAIL PROTECTED]> wrote: > 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?

[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,

[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 > funct

[jQuery] Re: jquery remove() not removing

2008-01-08 Thread David McFarland
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 the instance. > > If I check for the element, it returns true, but if I try to work with > it noth

[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

[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: http://groups.google.com/group/jquery-en/browse_

[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: jQuer

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

2008-01-08 Thread weepy
> http://olaf-bosch.de/bugs/jquery/cornerz.gif > > > The element itself holds the canvas or VML. It can be whatever you > > want - whether it's invalid xml or not. > > Yes i understand this fact. I say it does not need. ;) > > Give the parent element position:relative; and the cornerz working true

[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

[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: load method doesn't work with "& amp;" and "&" doesn't validate

2008-01-08 Thread Bob den Otter
[EMAIL PROTECTED] wrote: When loading an url containing querystrings with jQuery's "load" method I first tried "&" 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? Hi, You can use & inside scripts, as lon

[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 Co

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

2008-01-08 Thread Andy Matthews
I think what was meant was the ability to have corner effects other than just round. Any chance of getting squared off corners too? Will you throw that into the plugin when you get a chance? ;) -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[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 - whethe

[jQuery] Re: jQuery cycle not working??

2008-01-08 Thread Mike Alsup
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 PROTECTED]> wrote: > > Sorry I have changed it for the unpacked version now. Could you or > anyone else shed some light on

[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 -- Email: rrjanbiah-at-Y!comBlog: http://rajeshanbiah.blogspot.com/

[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 "&" 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] 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. availpoints = 500; $(document).re

  1   2   >