Re: [jQuery] Site

2010-02-13 Thread John Corry
www.twitter.com/avideogame > > > Thanks > Sourabh Sharma > -- John Corry PHP developer - 3by400, Inc http://www.3by400.com

[jQuery] Use jQuery and jQuery Simpletip plugin to visualize Tellurium UI Module

2010-02-09 Thread John
Outline Visitor and a Tooltip Visitor For more implementation details and live demo, please check out the following wiki page http://code.google.com/p/aost/wiki/TelluriumUiModuleVisualEffect Your comments and suggestions are highly appreciated. Thanks, John

Re: [jQuery] Re: Two search kriteria

2010-01-24 Thread John Arrowwood
ot in the mood to go look it up for you. :) But >> bottom line, don't use 'form.ZIP'. That's the part that isn't working. >> > > Hi John, > > The input-field for the zip-code has the id zip already. > > Unfortunately this doesn't work. > &g

Re: [jQuery] Two search kriteria

2010-01-23 Thread John Arrowwood
"#street").autocomplete('search.php?what=street&add='+form.ZIP.value, { > ... > > In this case, the additional parameter $add contains form.ZIP.value and not > 34128. > > If I write > $("#street").autocomplete('search.php?what=street&

Re: [jQuery] jQuery and div/iframe/pane content replace

2010-01-22 Thread John Arrowwood
I'm working on this page to get a "non-flash" version running because of > SEO compliance: http://www.theportalgrp.com. So, for example, clicking on > "services" will bring up the services div on the right. Would using jQuery > objects that contain the s be

Re: [jQuery] Re: New Forums

2010-01-22 Thread John Arrowwood
> Besides, as Richard pointed out, the mailing list right here will > still exist, it just won't be moderated/managed by the people it was > before.. > > That would be good, because at least for a period there would still be an > accessible source of information for JQue

Re: [jQuery] Re: saving state of treeview and form data afteer refresh

2010-01-21 Thread John Arrowwood
return false; >}); > > > with result "false" i disabled reloading page. but when i click on > page where i used : > 2 > > page is refreshed and all data and froms are set to default values. I > do not have idea hot save state of page. &

Re: [jQuery] saving state of treeview and form data afteer refresh

2010-01-21 Thread John Arrowwood
(on the node which i clicked) > and #form should have page loaded with inserted data ../forms/ > inputdata.php > > What should i do to treevew will stay open, page will stay in div > #forms and > data will be displayed on page? > > thanks in advance > > br,Dani > -- John Arrowwood John (at) Irie (dash) Inc (dot) com John (at) Arrowwood Photography (dot) com John (at) Hanlons Razor (dot) com -- http://www.irie-inc.com/ http://arrowwood.blogspot.com/

[jQuery] jQuery is Moving to a Forum

2010-01-20 Thread John Resig
found here: http://jquery14.com/day-07/new-jquery-forum If you have any questions concerning the move please feel free to post them in the new meta discussion forum here: http://forum.jquery.com/about-the-jquery-forum Thanks for your continued support and here's to future community discussions! --John

Re: [jQuery] Lists, Filtering and Searching, Oh My!

2010-01-19 Thread John Arrowwood
ng $.getJSON). Then there's the > issue of searching. Obviously QuickSearch works great, but how am I > going to search through a static file without throwing everything on > to the page? > > As you can see, I've begun brainstorming some ideas, but I'd really &g

Re: [jQuery] Animation for cloned elements

2010-01-18 Thread John Arrowwood
eIn etc). > > What am i doing wrong? > > Thanks > -- John Arrowwood John (at) Irie (dash) Inc (dot) com John (at) Arrowwood Photography (dot) com John (at) Hanlons Razor (dot) com -- http://www.irie-inc.com/ http://arrowwood.blogspot.com/

[jQuery] Mixing jsTree with jqueryUI draggable and droppable

2010-01-18 Thread John Arrowwood
ropping within a tree, or between trees. Within a tree, I want the default action to be a 'move'. Between trees, I want it to be a 'copy'. Looking at the source, it looks like it won't work that way. Am I understanding what I am reading correctly? Is there a way to simulat

Re: [jQuery] Re: Real time AJAX

2010-01-17 Thread John Arrowwood
I'm developing a web > > > app that has a functionality which is somewhat similar to Google > > > Wave's "real-time blip editing feature". Well, you know that thing > > > where we can see the blip being edited by someone else in real-time? > > > That's

[jQuery] Re: background-color always returns "transparent"

2010-01-15 Thread John
It turned out to be a bug in jQuery 1.3.2. I upgraded to jQuery 1.4 and the problem is solved. I can get back the correct background color rgb(255, 0, 0) now. Really appreciate John Arrowwood's help on this. A bit about the Tellurium automated testing framework (http:// code.google.com/p

[jQuery] get the element that called the function...

2010-01-15 Thread John Corry
detail. I want the ajax method to .hide() the link that WASN'T clicked on success. How do I know, inside the scope of the function, which element's onclick event triggered the function. If I knew that, it would be easy to hide the other one... -- John Corry PHP developer - 3by400, Inc http://www.3by400.com

Re: [jQuery] Re: background-color always returns "transparent"

2010-01-13 Thread John Arrowwood
That suggests that the selector that you are using to do your test is not quite right. Throw in a console.log( elem ) in a judicious location and find out what is being passed in. On Wed, Jan 13, 2010 at 12:00 PM, John wrote: > Yes, it does look right on screen. Also the wired thing is that

[jQuery] Re: background-color always returns "transparent"

2010-01-13 Thread John
not work programmatically. Thanks, John On Jan 13, 2:37 pm, John Arrowwood wrote: > But it LOOKS right on screen? > > On Wed, Jan 13, 2010 at 10:22 AM, John wrote: > > Sorry for the confusion. Actually, the getColor is a function called > > by another function, > > whic

Re: [jQuery] Re: background-color always returns "transparent"

2010-01-13 Thread John Arrowwood
But it LOOKS right on screen? On Wed, Jan 13, 2010 at 10:22 AM, John wrote: > Sorry for the confusion. Actually, the getColor is a function called > by another function, > which first checks all different css, if the css is color related and > the value is transparent, then > pa

[jQuery] Re: background-color always returns "transparent"

2010-01-13 Thread John
trace in firebug and the getColor did walk up to the body, all nodes returned "transparent" if I put the css style in the head. If I use in- line css style, it works fine. Thanks, John On Jan 13, 10:42 am, John Arrowwood wrote: > Make sure you are passing in a document node and

Re: [jQuery] Re: background-color always returns "transparent"

2010-01-13 Thread John Arrowwood
= elem.get(0); var color = null; while ( elem != null ) { color = $(elem).css(what); if ( color != '' && color != 'transparent' || jQuery.nodeName(elem,'body') ) break; elem = elem.parentNode; } return color; } On Tue, Jan 12, 2010 at 11:

Re: [jQuery] Passing parameters by object

2010-01-13 Thread John Arrowwood
urns true if any element of oParm is > not in oAllParms > if ( $.notIn( oAllParms, oParms ) { some error notification here } > // We know the parms are good so proceed here > > Before inventing the wheel again, can anyone point to a clean example > of a plugin that validate

[jQuery] How to set errorContainer in jQuery validation dynamically?

2010-01-12 Thread John
Can I dynamically set errorContainer in jQuery validation, which means showing different error container base on the button clicked. I have posted question on stackoverflow http://stackoverflow.com/questions/2052200/how-to-set-errorcontainer-in-jquery-validation-dynamically

[jQuery] Re: background-color always returns "transparent"

2010-01-12 Thread John
arent" even with the getColor method. I couldn't figure out what was wrong and please help me with this. How can I get back the background-color as rgb(255,0,0) or "red" in the latter case. Thanks in advance, John > > On Jan 11, 2:31 pm, John Arrowwood wrote: >

Re: [jQuery] Looping help

2010-01-12 Thread John Arrowwood
/n\/PICT0849.JPG","http:\/\/localhost\/f-stopart2\/photoshoots\/n\/PICT0851.JPG","http:\/\/localhost\/f-stopart2\/photoshoots\/n\/PICT0845.JPG","http:\/\/localhost\/f-stopart2\/photoshoots\/n\/PICT0846.JPG","http:\/\/localhost\/f-stopart2\/photoshoots\/n\/PIC

Re: [jQuery] Looping help

2010-01-11 Thread John Arrowwood
k me if it can be done. The answer is YES, it can always be > done. The correct questions however are... What will it cost, and how > long will it take? > -- John Arrowwood John (at) Irie (dash) Inc (dot) com John (at) Arrowwood Photography (dot) com John (at) Hanlons Razor (dot) com -- http://www.irie-inc.com/ http://arrowwood.blogspot.com/

Re: [jQuery] Re: Ajax forms help

2010-01-11 Thread John Arrowwood
th the errors > > > > > } > > > > > But if I am returning json I cant return my normal html after the > > > successful save, and if I return my response as html there is no way > > > to tell the js what to do. > > > The form or the target is html code > > > > > How can I tell what the response was (true or false) and return the > > > appropriate html code for the appropriate form or target? > > > > > Thanks > > > > > Dave > > No virus found in this incoming message. > > Checked by AVG -www.avg.com > > Version: 9.0.725 / Virus Database: 270.14.130/2607 - Release Date: > > 01/10/10 16:05:00 > No virus found in this incoming message. > Checked by AVG - www.avg.com > Version: 9.0.725 / Virus Database: 270.14.130/2607 - Release Date: 01/11/10 > 04:05:00 > > -- John Arrowwood John (at) Irie (dash) Inc (dot) com John (at) Arrowwood Photography (dot) com John (at) Hanlons Razor (dot) com -- http://www.irie-inc.com/ http://arrowwood.blogspot.com/

[jQuery] Re: background-color always returns "transparent"

2010-01-11 Thread John
Thanks. I am not a QA tester, but the product maker instead. :-) I work on the open source project "Tellurium automated testing framework" to do functional testing and we use a lot of jQuery. Thanks, John On Jan 11, 2:31 pm, John Arrowwood wrote: > As a QA tester with a lot of te

Re: [jQuery] Re: background-color always returns "transparent"

2010-01-11 Thread John Arrowwood
g for things to automate, but I would be surprised if you had gotten that far already! :) There are some other things you can do, too, to make it easier or faster. If you want to discuss it off-list, email me at j...@irie-inc.com. On Mon, Jan 11, 2010 at 9:54 AM, John wrote: > Thanks for yo

[jQuery] Re: background-color always returns "transparent"

2010-01-11 Thread John
Yes, indeed, the color on the 'li' tag is red. Thanks, John On Jan 11, 12:54 pm, John wrote: > Thanks for your reply. I will try to see if the background color on > the parent works or not. > > As for checking the "red" color, I need to do a UI test and check if

[jQuery] Re: background-color always returns "transparent"

2010-01-11 Thread John
Thanks for your reply. I will try to see if the background color on the parent works or not. As for checking the "red" color, I need to do a UI test and check if the background color is set correctly. That is to say, I am testing other people's code and web page. Thanks, John O

Re: [jQuery] background-color always returns "transparent"

2010-01-11 Thread John Arrowwood
e looking for. But before you go down that road, why are you looking to see the color of the element? If you can describe what you are trying to do in more general terms, someone may be able to give a better suggestion on how to accomplish it. On Mon, Jan 11, 2010 at 7:39 AM, John wrote: >

[jQuery] Re: background-color always returns "transparent"

2010-01-11 Thread John
Thanks for your reply. The output of .css ("background"); is empty. Also changed the css attribute as 'background-color', it still returns 'transparent'. Thanks, John On Jan 11, 11:03 am, Charlie wrote: > appears you are using 2 different css attributes

[jQuery] background-color always returns "transparent"

2010-01-11 Thread John
always returned the value "transparent" instead of the "red" color rgb(255,0,0). I also tried "backgroundColor" and it did not work either ("transparent"). How to get back the correct background color? Thanks in advance, John

Re: [jQuery] Re: Extracting content from a div?

2010-01-11 Thread John Arrowwood
as there is an implicit each() done > > within find()." > > > > In other words: you can try to select the first li of all div with the > class > > attribute named 'error'. > > > > Now the .children(), this method will return all the immediate > descendants > > elements within the selected element. > > > > Example: $('.error').children('ul').children('li') this will return > exactly > > the directly children of the .error! .find() would return all > descendants, > > not only the immediate ones. > > > > As said in the jquery documentation, it's important to refrain here: > while > > .children() returns only the immediate descendants, .parents() will look > at > > all ancestors. > > > > That's all, > > > > Have a good day. > > > > -- > > At, > > Leo Balterhttp://leobalter.net > > Blog técnico:http://blog.leobalter.net > -- John Arrowwood John (at) Irie (dash) Inc (dot) com John (at) Arrowwood Photography (dot) com John (at) Hanlons Razor (dot) com -- http://www.irie-inc.com/ http://arrowwood.blogspot.com/

Re: [jQuery] Re: XML print all nodes ( html() )

2010-01-10 Thread John Arrowwood
Try it without the clone(). And try it without the '/' after ' wrote: > no go. > > On Jan 9, 10:56 pm, John Arrowwood wrote: > > console.log( $('').append( $(itemsXML).clone() ).html() ) > > > > See if that works. > > > > On Sa

Re: [jQuery] XML print all nodes ( html() )

2010-01-09 Thread John Arrowwood
if(myid == $(this).find("id").text()){ > itemsXML = $(this).html() <-- trying to do something > like this > } > } > > i would like itemsXML to contain the entire stucture of the xml rather > than the jquery object. thanks > --

Re: [jQuery] Custom animations

2010-01-09 Thread John Arrowwood
() { >$(this).animate( >height: 500px, > width: 500px >); > }); > -- John Arrowwood John (at) Irie (dash) Inc (dot) com John (at) Arrowwood Photography (dot) com John (at) Hanlons Razor (dot) com -- http://www.irie-inc.com/ http://arrowwood.blogspot.com/

[jQuery] Re: Anybody ever come up with a good way of doing dynamic CSS?

2010-01-08 Thread John Arrowwood
wonder: Is there a more elegant (client-side) solution? Has anyone else ever done client-side CSS rule generation based on data returned from the database? I'm just looking for people's ideas of 'best practices' since I know that CSS doesn't yet support macros (right?). O

[jQuery] Anybody ever come up with a good way of doing dynamic CSS?

2010-01-08 Thread John Arrowwood
Basic idea is a template: .card .ct-$(type) { width: x -- John Arrowwood John (at) Irie (dash) Inc (dot) com John (at) Arrowwood Photography (dot) com John (at) Hanlons Razor (dot) com -- http://www.irie-inc.com/ http://arrowwood.blogspot.com/

[jQuery] CSS problem

2010-01-07 Thread John
Hi, I have a question about css. I want to dump out all css attributes and values of a UI element, how to do that in jQuery? Thanks in advance, John

Re: [jQuery] Need your opinion you ALL!!!

2010-01-07 Thread John Norcott
esources. Also, if there is ever a chance your employer will want to move this site to another production machine, using relative paths now will make that future move immensely easier. Hope that helps. -John On Wed, Jan 6, 2010 at 10:14 PM, Erik R. Peterson wrote: > Hello everyone, > >

Re: [jQuery] ajax form plugin submit button

2010-01-06 Thread John Arrowwood
for that layout. > > If you need more information please let me know. > Sorry for my english ;-) > -- John Arrowwood John (at) Irie (dash) Inc (dot) com John (at) Arrowwood Photography (dot) com John (at) Hanlons Razor (dot) com -- http://www.irie-inc.com/ http://arrowwood.blogspot.com/

Re: [jQuery] Help with change event

2010-01-06 Thread John Arrowwood
ot;; > $("select option:selected").each(function () { >str += $(this).text() + " "; > }); > $("div").text(str); >}) >.change(); > > It all makes sense except for the very last change().

Re: [jQuery] Re: ajax image

2010-01-06 Thread John Arrowwood
e:http://www.websiteoptimization.com/speed/tweak/inline-images/), > but > > the problem with that, like almost all cool ideas like that link > > shows, is it doesn't work with IE > > neat concept but not doable trying to stick with ajax > > Thanks for your help > Mean Mike > -- John Arrowwood John (at) Irie (dash) Inc (dot) com John (at) Arrowwood Photography (dot) com John (at) Hanlons Razor (dot) com -- http://www.irie-inc.com/ http://arrowwood.blogspot.com/

[jQuery] form validation

2010-01-06 Thread John Albright
Is it possible to use the jquery form validation plugin (http:// bassistance.de/jquery-plugins/jquery-plugin-validation/) to validate a form that was inserted into the page via javascript? What I'm trying to do is display a person's address, which is contained in a span tag, and give them the optio

Re: [jQuery] Re: simple jquery question

2010-01-05 Thread John Arrowwood
o select each element that has a certain class on my > > page, and then use what is inside of the I am > > selecting to populate a drop down select box with the id of > > deptFilter. (with each result found inside of the H3, wrapped in > > tags.) I am having trouble understanding how I actually store > > the variables found in each H3 with the class of "example". > > > Any help would be greatly appreciated. > > > -- John Arrowwood John (at) Irie (dash) Inc (dot) com John (at) Arrowwood Photography (dot) com John (at) Hanlons Razor (dot) com -- http://www.irie-inc.com/ http://arrowwood.blogspot.com/

Re: [jQuery] vertical coverflow

2010-01-05 Thread John Arrowwood
Any idea how you intend to do the perspective shifts in pure JavaScript? Because I do not know if it can even be done. Maybe in a Canvas element, but I don't know much about that. On Mon, Jan 4, 2010 at 2:45 AM, John R wrote: > Hi , > I would like to create vertical coverflow using

Re: [jQuery] Help needed to find image dimensions

2010-01-05 Thread John Arrowwood
> > this.t = this.title; > > this.title = ""; > > var orientation = ((this.img[src]).width() > > (this.img[src]).height()) ? "' alt='Image preview' width ='200px' />" : "' > alt='Imag

[jQuery] vertical coverflow

2010-01-04 Thread John R
Hi , I would like to create vertical coverflow using jquery like this link http://dougmccune.com/blog/2007/11/19/flex-coverflow-performance-improvement-flex-carousel-component-and-vertical-coverflow/ Please help me as soon as possible. Regards, John

[jQuery] Re: Animate or ToggleClass

2010-01-03 Thread John Sanabria
Waseem, again thank you for your help. Now, this is what I'm trying to do. (I'm adding a couple of screenshots for further detail) First image: As you can see, I have a unordered list with an id of "filter" that *filters* the items of the also unordered list with an id of portafolio. The filter

[jQuery] Re: Draggable/Droppable - revert:'invalid' working on Firefox, not on Safari

2009-12-28 Thread John Arrowwood
un, Dec 27, 2009 at 11:10 PM, John Arrowwood wrote: > I am creating objects on the page which are meant to be dragged and > dropped. Here is how I am enabling it: > > $(this.element).draggable({ > start:P.startDragging, &

[jQuery] Draggable/Droppable - revert:'invalid' working on Firefox, not on Safari

2009-12-27 Thread John Arrowwood
inal position, and so the animation never completed, and the element is left in a broken state. Has anyone else ever seen this? Any ideas what to look at in trying to debug this? -- John Arrowwood John (at) Irie (dash) Inc (dot) com John (at) Arrowwood Photography (dot) com John (

Re: [jQuery] Problem with jQuery and AJAX

2009-12-23 Thread John Arrowwood
ing > untill i manually refresh the page i have seen all the solution > already given but since i am a beginner in jQuery i am unable to > understand and implement them.. > > Kindly provide me with some guidlines on how to solve this problem > > > -- John Arrowwood John (at) Irie (dash) Inc (dot) com John (at) Arrowwood Photography (dot) com John (at) Hanlons Razor (dot) com -- http://www.irie-inc.com/ http://arrowwood.blogspot.com/

Re: [jQuery] Re: $(checkbox).css('background-color',value) does not work on FireFox?

2009-12-23 Thread John Arrowwood
in IE and Opera... but not FF, Safari and Chrome. > > Also, what do you mean by "the input element has a style for the > background color" ? > -- John Arrowwood John (at) Irie (dash) Inc (dot) com John (at) Arrowwood Photography (dot) com John (at) Hanlons Razor (dot) com -- http://www.irie-inc.com/ http://arrowwood.blogspot.com/

[jQuery] $(checkbox).css('background-color',value) does not work on FireFox?

2009-12-22 Thread John Arrowwood
passes. On Firefox, it does not. Funny thing, the element has a style for the background color, but .css('background-color') is not returning the color I set. It is returning rgb(255,255,255). Anybody else seen this? -- John Arrowwood John (at) Irie (dash) Inc (dot) com John (at)

Re: [jQuery] passing variables to JQuery

2009-12-22 Thread John Arrowwood
code chunk that I throw > variables at, instead of cutting/pasting and changing the hard coded values > it would be much more elegant and make troubleshooting a lot easier. Not to > mention making my .js file a helluva lot smaller. > > > > Any thoughts on how to do this? > > > > Thanks > > > > sas > > > > -- > > Scott Stewart > > IT Consultant/ColdFusion Developer > > 4405 Oakshyre Way > > Raleigh, NC 27616 > > (919) 874-6229 > > > -- John Arrowwood John (at) Irie (dash) Inc (dot) com John (at) Arrowwood Photography (dot) com John (at) Hanlons Razor (dot) com -- http://www.irie-inc.com/ http://arrowwood.blogspot.com/

Re: [jQuery] Re: Does jquery have problems with webkit browsers?

2009-12-22 Thread John Arrowwood
contentType:"text/ > plain",processData:false,data:dataString,type:"POST"}); and retrieving > it with $.ajax > ({dataType:"text",cache:"false",url:"",success:function > (data,status){ eval(data); }); > > It's entirely p

Re: [jQuery] Re: jquery.color.js no longer maintained?

2009-12-18 Thread John Arrowwood
elp some of the plugins that have been > neglected. Maybe we can get some people to adopt the plugins that seem > to be popular but orphaned. > > -- John Arrowwood John (at) Irie (dash) Inc (dot) com John (at) Arrowwood Photography (dot) com John (at) Hanlons Razor (dot) com -- htt

[jQuery] jquery.color.js no longer maintained?

2009-12-17 Thread John Arrowwood
actively maintained. If that is the case, how do we go about getting a new release out there? More importantly, when will this functionality be added to the core? :) -- John Arrowwood John (at) Irie (dash) Inc (dot) com John (at) Arrowwood Photography (dot) com John (at) Hanlons Razor (dot) com

Re: [jQuery] Variable and additional selectors

2009-12-11 Thread John Arrowwood
;); > > However, entry has several divs that I'd like to manipulate between > cloning and appending. Is there a way to use selectors to get those > divs, manipulate them within "entry"? > > Entry is a jQuery so I thought I could do something like entry > (".av

Re: [jQuery] proper way

2009-12-11 Thread John Arrowwood
d functions? > > $(document).ready(function() { > $('a.link1').click(clickFunction1()); > > $('a.link2').click(clickFunction2()); > }); > > function clickFunction1() { > //code > } > > function clickFunction2() { >//code > } > &

Re: [jQuery] Re: Content loaded via Ajax and global JS

2009-12-05 Thread John Imbong
I didn't know that. Thanks for the correction. John On Sat, Dec 5, 2009 at 11:59 PM, Karl Swedberg wrote: > On Dec 5, 2009, at 10:47 AM, John Imbong wrote: > > Yes, the *live *function should do it. In case that still won't work for > you, just work up the vine and install

Re: [jQuery] Re: Content loaded via Ajax and global JS

2009-12-05 Thread John Imbong
Yes, the *live *function should do it. In case that still won't work for you, just work up the vine and install the plugin *livequery *instead, which is where live came from. John On Sat, Dec 5, 2009 at 10:41 PM, jpcozart wrote: > Check out the live function. It can solve this

[jQuery] jQuery 1.4 Alpha 1 Released

2009-12-04 Thread John Resig
More details here: http://blog.jquery.com/2009/12/04/jquery-14-alpha-1-released/ --John

[jQuery] How to find or set clueTip localIdSuffix?

2009-11-13 Thread John Maurer
The jQuery clueTip FAQ (http://plugins.learningjquery.com/cluetip/ #faq) says the following: "New as of clueTip 1.0.4: Why don't the styles that I've applied to my local content carry over once they're inside a clueTip? When using an element on the same page to populate the clueTip's content, the

[jQuery] Re: $(':target') and $(location.hash)

2009-09-24 Thread John Resig
asking for :target. --John On Thu, Sep 24, 2009 at 2:41 PM, Jack Bates wrote: > > $(':target') works in Firefox 3.5, but not Firefox 3.0 and some other > browsers, > > http://www.sfu.ca/~jdbates/tmp/qubit/200909231/#aaa<http://www.sfu.ca/%7Ejdbates/tmp/qubit/200909231/

[jQuery] Re: Twitter for support?

2009-09-13 Thread John Resig
That sounds about right - hopefully we'll be able to direct them to a forum, eventually (which would be much easier to use, I'd expect, for someone who's using twitter). --John On Sun, Sep 13, 2009 at 2:53 PM, Mike Alsup wrote: > > Over the past few months I've b

[jQuery] jQuery content slider

2009-09-11 Thread John Corry
ude the testimonials div. When the initGall() function runs though, it fails to set some variables for 'testimonials' like it does for 'partners'. I can't figure it out, everything *looks* like it should work. Anyone here mind putting a different set of eyes on it to see if

[jQuery] Help with Add/Removing Classes

2009-09-09 Thread John Hanks
Guys, I have a problem with my menu. I am trying to add and remove classes when clicking on the main menu links. For instance when on load, the 'Home' is the current tab clicked, but when I click on 'Contact Me' I would like the class current to be removed from 'Home' and added to 'Contact Me' inst

[jQuery] Re: Superfish delay issues

2009-09-08 Thread John
update... Delay works except for when my cms assigns the "selected" class to the li. Is there a way to tell superfish to apply the same delay for selected li's? On Sep 8, 11:48 am, John wrote: > Quick troubleshooting question: > > For the nav at mobilityidaho.org The d

[jQuery] Superfish delay issues

2009-09-08 Thread John
Quick troubleshooting question: For the nav at mobilityidaho.org The delay is not, for lack of a better word, delaying. I have it set to 1 second, but it's not cooperating. Any advice?

[jQuery] Re: jQuery selector for style attribute

2009-08-28 Thread John
Got it working, see here, http://code.google.com/p/aost/wiki/CustomJQuerySelectorInTellurium#:styles On Aug 27, 5:57 pm, John wrote: > Seems I should use css(), not attr(). > > On Aug 27, 3:46 pm, John wrote: > > > Seems always begin with "ext-gen". > > >

[jQuery] Re: jQuery selector for style attribute

2009-08-27 Thread John
could come to rescue. On Aug 27, 3:09 pm, James wrote: > Is that for the whole ID? (e.g. it maybe 'ext-gen439' once or 'blah- > foo3456' another) > Or only just the number at the end? (e.g. always begin with "ext-gen") > > On Aug 26, 5:10 pm, John wro

[jQuery] Re: jQuery selector for style attribute

2009-08-27 Thread John
Seems I should use css(), not attr(). On Aug 27, 3:46 pm, John wrote: > Seems always begin with "ext-gen". > > I wonder if I could split the style content into multiple single > attributes > and then use attr() to compare. Based on that, I could create a custom > sel

[jQuery] Re: jQuery selector for style attribute

2009-08-26 Thread John
bute. That is why I am looking for a solution to this. Your insightful suggestions are highly appreciated. BTW, we only tested the style attribute in Firefox, but still not working. :(. Thanks, John On Aug 26, 4:34 pm, James wrote: > As Paolo mentioned, despite how it looks in a browser's s

[jQuery] Re: jQuery selector for style attribute

2009-08-26 Thread John
> anyway? You could do selections with conditions like "if ID begins > with 'ext-gen'" and other conditions along with that. As long as > you're not trying to read the style string. > > On Aug 26, 4:06 am,John wrote: > &

[jQuery] Re: How to express the AND condition in jQuery

2009-08-26 Thread John
}; it seems working. But is there any better way to get back the input array other than use "split"? Thanks, John On Aug 26, 2:48 pm, John wrote: > Variable input variables are even better than an array. > > Thanks, > > John > > On Aug 26, 2:23 pm, John wrot

[jQuery] Re: How to express the AND condition in jQuery

2009-08-26 Thread John
Variable input variables are even better than an array. Thanks, John On Aug 26, 2:23 pm, John wrote: > Cool. It works. Thanks again. > > I am a beginner of jQuery and need further help on this. Practically, > I will have variable number of inputs to do the and operation. That is

[jQuery] Re: how to get back the DOM element as HTML source

2009-08-26 Thread John
Cool. Thanks. -John On Aug 21, 9:49 am, KeeganWatkins wrote: > i wrote a really simple plugin for this, as i frequently have the same > use case: > > jQuery.fn.outerHTML = function() { >     return jQuery("").append( jQuery(this[0]).clone() ).html(); > > } >

[jQuery] Re: How to express the AND condition in jQuery

2009-08-26 Thread John
, John On Aug 26, 1:25 pm, John wrote: > Thanks, will try. > > Does that mean that the ":has" operator is not designed for the AND > operation? > > Thanks, > > John > > On Aug 26, 12:52 pm, MorningZ wrote: > > > Not sure if this is the only or bes

[jQuery] Re: How to express the AND condition in jQuery

2009-08-26 Thread John
Thanks, will try. Does that mean that the ":has" operator is not designed for the AND operation? Thanks, John On Aug 26, 12:52 pm, MorningZ wrote: > Not sure if this is the only or best way or how "fast" it may or may > not be, but does work > > http://paste.p

[jQuery] How to express the AND condition in jQuery

2009-08-26 Thread John
t;:has" can do the job, but I am not really sure if that is the correct way. Any insight on this is appreciated. Thanks in advance, John

[jQuery] Re: jQuery selector for style attribute

2009-08-26 Thread John
Thanks. Here is the html source, The style in the jQuery selector should match the one defined in the html source. I wonder if I did any other thing wrong here. Thanks, John On Aug 26, 6:45 am, Paolo Chiodi wrote: > Maybe t

[jQuery] Re: jQuery selector for style attribute

2009-08-25 Thread John
about the correctness of the syntax. Thanks, John On Aug 25, 5:36 pm, James wrote: > Couldn't you just set another class for where you have that long style > attribute? That'll make it so much nicer and less error prone for what > you're trying to achieve. I'm not

[jQuery] Re: jQuery selector for style attribute

2009-08-25 Thread John
"]) img[style="overflow: auto; width: 356px; height: 100px;"]') Here "not working" means it returns empty object where it should return non-empty object. Do you know what is wrong? Thanks again, John On Aug 25, 2:50 pm, "Mauricio \(Maujor\) Samy Silva" wro

[jQuery] jQuery selector for style attribute

2009-08-25 Thread John
, John

[jQuery] Re: how to get back the DOM element as HTML source

2009-08-19 Thread John
That works. Really appreciate your help. -John On Aug 18, 7:48 pm, mkmanning wrote: > outerHTML is an IE addition to the DOM and not supported by Firefox. > If you want to get it with jQuery just append the element to a div and > get itshtml(): > > $('').append( $(&quo

[jQuery] Re: how to get back the DOM element as HTML source

2009-08-18 Thread John
or example, .. Is there any jQuery function for this? If not, how do I implement this? Thanks in advance, John On Aug 18, 2:06 am, anurag pal wrote: > Hi John, > > After setting the html by using html method you have to bind the DOM > elements using bind method. > > Example: &g

[jQuery] how to get back the DOM element as HTML source

2009-08-17 Thread John
Hi, How do I get back the DOM element as HTML source using jQuery? The html () method only returns the innerHTML and it does not include the UI element itself. But I am more interested in converting the UI element itself to HTML. Thanks in advance, Jian

[jQuery] Re: Invite jquery developers to join our open source project: "Tellurium Automated Testing Framework"

2009-08-17 Thread John
No one is interested? On Aug 14, 1:35 pm, John wrote: > Tellurium Automated Testing Framework (Tellurium) is an automated web > testing framework built on the top of the Selenium framework at the > current stage. We have started our own testing driving project, > Tellurium Engine, w

[jQuery] JQuery Tablesorter - Multiple Options

2009-08-14 Thread John F
Just a quick question. I'm trying to combine mutliple tablesoter options but I'm not able to combine the functions. I'm new to the Jquery/Javascript arena and haven't been able to find any examples on the web. Part 1 Code: $(document).ready(function() { $("#draftlist").tablesorter({

[jQuery] Invite jquery developers to join our open source project: "Tellurium Automated Testing Framework"

2009-08-14 Thread John
Tellurium Automated Testing Framework (Tellurium) is an automated web testing framework built on the top of the Selenium framework at the current stage. We have started our own testing driving project, Tellurium Engine, which will be using jQuery. We also have a Firefox plugin project, TrUMP, the

[jQuery] Re: jQuery.ready after document has loaded

2009-08-12 Thread John Resig
We just landed some code in the latest nightly versions of jQuery to auto-detect if the page has already loaded. You can try it here: http://code.jquery.com/jquery-nightly.js --John On Wed, Aug 12, 2009 at 5:14 PM, ujamu wrote: > > I have developed a FF extension that loads a few Java

[jQuery] Re: IE8 Selector Bug?

2009-08-12 Thread John Resig
gentry - Yes please! --John On Wed, Aug 12, 2009 at 5:15 PM, gentry wrote: > > I got it to work by changing to this: > > $('#Row_1>td>input[type=text]').each(function() { > $(this).val(''); > }); > > John - Still want a bug filed for

[jQuery] Re: IE8 Selector Bug?

2009-08-12 Thread John Resig
It looks similar to the one above, but different. I'll try and check in to them both. gentry - can you file a bug for the issue you found, preferably with a full test case? --John On Wed, Aug 12, 2009 at 2:21 PM, Jeffrey Kretz wrote: > > My guess is its related to a problem I ra

[jQuery] Re: Bug? -- toggle() of TR broke in IE8

2009-08-07 Thread John Resig
These are a duplicate of http://dev.jquery.com/ticket/4512 which has been fixed. --John On Fri, Aug 7, 2009 at 4:53 PM, Mondo Libero wrote: > > Here: http://dev.jquery.com/ticket/4753, and Here: > http://dev.jquery.com/ticket/4960 > some users send this bug on bug tracker. The

[jQuery] blockui v2.20 - hourglass cursor stays in IE 7+

2009-08-04 Thread John Simons
You should be able to replicate this on http://malsup.com/jquery/block/#page Go to the page above and click on "Default Message" button and make sure you don't move the mouse cursor. You should see that the cursor remains a hourglass even after the page comes back, to get the correct cursor you h

[jQuery] Re: jquery 1.3.2 error with $(':inp...@name=submit]')???

2009-08-02 Thread John Resig
Just remove the @ and it'll work fine. --John On Sun, Aug 2, 2009 at 12:07 PM, micorreo13 wrote: > > I was using jquery-1.2.6 and now, I started to use jquery-1.3.2, and I > get my first "difference": when I use the wrapped set operation $ > (':inp...@nam

[jQuery] Re: function running 2X

2009-07-29 Thread John Resig
How many times is clickcharges called? Perhaps you're binding a click more than once. --John On Wed, Jul 29, 2009 at 3:03 PM, marksimon wrote: > > Still getting 2 alerts. > > On Jul 29, 11:49 am, Eric Garside wrote: > > Pretty sure its because the ev

[jQuery] Re: consistently unable to get return false to work, why?

2009-07-27 Thread John Resig
It looks like you're using the old liveQuery plugin. Why not just use .bind() or .live()? --John On Mon, Jul 27, 2009 at 5:11 PM, pedalpete wrote: > > So, this isn't related to any one bit of code, but it seems to be a > problem I run into almost everytime i need to stop

  1   2   3   4   5   6   7   8   9   10   >