Re: [jQuery] Site

2010-02-13 Thread John Corry
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
an 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
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. $(#street).autocomplete('search.php?what=street add='+$('#zip').value(), { The script search.php isn't

Re: [jQuery] Two search kriteria

2010-01-23 Thread John Arrowwood
fine. Thank you in advance for your help and hava a nice weekend. -- Frank Becker -- 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: 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 JQuery. Octavian -- John

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

2010-01-22 Thread John Arrowwood
() is better, or .click() or which function to do what I want. Any help would be greatly appreciated. Thanks! Eugene -- 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

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

2010-01-21 Thread John Arrowwood
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/

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

2010-01-21 Thread John Arrowwood
/a page is refreshed and all data and froms are set to default values. I do not have idea hot save state of page. can you help maybe with some example, i programming in php in jquery 1 month and web pages. br,Dani On 21 jan., 15:53, John Arrowwood jarro...@gmail.com wrote: Try creating

[jQuery] jQuery is Moving to a Forum

2010-01-20 Thread John Resig
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
, I've begun brainstorming some ideas, but I'd really love to hear what other solutions come to mind for you guys. Any ideas you have would be awesome. Thanks! David -- John Arrowwood John (at) Irie (dash) Inc (dot) com John (at) Arrowwood Photography (dot) com John (at) Hanlons Razor

[jQuery] Mixing jsTree with jqueryUI draggable and droppable

2010-01-18 Thread John Arrowwood
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 simulate it? Or do I need to add a feature to the tree code in order to get that behavior? -- John Arrowwood John (at) Irie (dash) Inc (dot) com

Re: [jQuery] Animation for cloned elements

2010-01-18 Thread John Arrowwood
-- 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: Real time AJAX

2010-01-17 Thread John Arrowwood
() or setInterval(), but I'm not sure if that's the standard way of doing this. Can someone point me in the right direction? 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

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

2010-01-15 Thread John Corry
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

[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/aost

Re: [jQuery] Passing parameters by object

2010-01-13 Thread John Arrowwood
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 validates object parameters? -- John Arrowwood John (at) Irie (dash) Inc (dot) com John

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

2010-01-13 Thread John Arrowwood
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:12 AM, John john.jian.f...@gmail.com wrote: Sorry, I have

[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 jarro...@gmail.com wrote: Make sure you are passing in a document node

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 john.jian.f...@gmail.com 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

[jQuery] Re: background-color always returns transparent

2010-01-13 Thread John
, John On Jan 13, 2:37 pm, John Arrowwood jarro...@gmail.com wrote: But it LOOKS right on screen? On Wed, Jan 13, 2010 at 10:22 AM, John john.jian.f...@gmail.com wrote: Sorry for the confusion. Actually, the getColor is a function called by another function, which first checks all different css

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 john.jian.f...@gmail.com wrote: Yes, it does look right on screen. Also

Re: [jQuery] Looping help

2010-01-12 Thread John Arrowwood
\/f-stopart2\/photoshoots\/n\/PICT0850.JPG,http:\/\/localhost\/f-stopart2\/photoshoots\/n\/PICT0848.JPG] Thank you for you help On Mon, Jan 11, 2010 at 10:25 PM, John Arrowwood jarro...@gmail.com wrote: What does your JSON array look like? On Mon, Jan 11, 2010 at 9:23 PM, Randall Morgan

[jQuery] Re: background-color always returns transparent

2010-01-12 Thread John
) or red in the latter case. Thanks in advance, John On Jan 11, 2:31 pm, John Arrowwood jarro...@gmail.com wrote: As a QA tester with a lot of test automation experience, a bit of advice: Ask if the product would not ship if it wasn't red.  If the answer is no, then you might not want

[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

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

2010-01-11 Thread John Arrowwood
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

[jQuery] background-color always returns transparent

2010-01-11 Thread John
, John

[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 charlie...@gmail.com wrote: appears you are using 2 different css attributes. 'background

Re: [jQuery] background-color always returns transparent

2010-01-11 Thread John Arrowwood
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 john.jian.f...@gmail.com wrote: Hi, I

[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 On Jan 11, 12:41 pm

[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 john.jian.f...@gmail.com 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

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

2010-01-11 Thread John Arrowwood
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 john.jian.f...@gmail.com wrote

[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 jarro...@gmail.com wrote: As a QA tester with a lot

Re: [jQuery] Re: Ajax forms help

2010-01-11 Thread John Arrowwood
/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

Re: [jQuery] Looping help

2010-01-11 Thread John Arrowwood
=filmstrip-cell /div div id=4 class=filmstrip-cell /div ... div id=35 class=filmstrip-cell /div /div -- If you ask 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

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

2010-01-10 Thread John Arrowwood
wrote: no go. On Jan 9, 10:56 pm, John Arrowwood jarro...@gmail.com wrote: console.log( $('div/').append( $(itemsXML).clone() ).html() ) See if that works. On Sat, Jan 9, 2010 at 7:27 PM, Shane wishiwasmiss...@gmail.com wrote: Is there a way to print out the structure of a jQuery xml

Re: [jQuery] Custom animations

2010-01-09 Thread John Arrowwood
, 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/

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

2010-01-09 Thread John Arrowwood
== $(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 -- John Arrowwood John (at) Irie (dash) Inc (dot) com John

[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] Re: Anybody ever come up with a good way of doing dynamic CSS?

2010-01-08 Thread John Arrowwood
-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?). On Fri, Jan 8, 2010 at 11:20 PM, John Arrowwood j...@irie-inc.com

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

2010-01-07 Thread John Norcott
, 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 eriks...@mac.com wrote: Hello everyone, Someone

[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

[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

Re: [jQuery] Re: ajax image

2010-01-06 Thread John Arrowwood
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/

Re: [jQuery] Help with change event

2010-01-06 Thread John Arrowwood
option:selected).each(function () { str += $(this).text() + ; }); $(div).text(str); }) .change(); It all makes sense except for the very last change(). Can anyone explain the purpose of this line? Thank you -- John Arrowwood John (at) Irie (dash

Re: [jQuery] ajax form plugin submit button

2010-01-06 Thread John Arrowwood
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 needed to find image dimensions

2010-01-05 Thread John Arrowwood
: ; $(body).append(p id='preview'img src='+ this.href + orientation + c +/p); Can anyone see what I'm doing wrong? TIA -- 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

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 rojanjo...@gmail.com wrote: Hi , I would like to create vertical coverflow

Re: [jQuery] Re: simple jquery question

2010-01-05 Thread John Arrowwood
of the H3, wrapped in option 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

[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

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

2009-12-28 Thread John Arrowwood
, 2009 at 11:10 PM, John Arrowwood j...@irie-inc.com 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, stop

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

2009-12-27 Thread John Arrowwood
, 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 (at) Hanlons Razor (dot) com -- http://www.irie-inc.com/ http

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

2009-12-23 Thread John Arrowwood
passes ? From my own testing, setting a background-color on checkboxes has visual effect only 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

Re: [jQuery] Problem with jQuery and AJAX

2009-12-23 Thread John Arrowwood
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: Does jquery have problems with webkit browsers?

2009-12-22 Thread John Arrowwood
to the webkit javascript implementation, so apologies if that's so. But if anyone could point me in the right direction, I'd appreciate it. pw -- John Arrowwood John (at) Irie (dash) Inc (dot) com John (at) Arrowwood Photography (dot) com John (at) Hanlons Razor (dot) com -- http://www.irie

Re: [jQuery] passing variables to JQuery

2009-12-22 Thread John Arrowwood
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

[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 input 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) Arrowwood

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

2009-12-18 Thread John Arrowwood
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 -- http://arrowwood.blogspot.com Joan

[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] proper way

2009-12-11 Thread John Arrowwood
(clickFunction2()); }); function clickFunction1() { //code } function clickFunction2() { //code } I´ve heard that anonymous functions is a faster way?? thanks in advance George -- John Arrowwood John (at) Irie (dash) Inc (dot) com John (at) Arrowwood Photography (dot) com John

Re: [jQuery] Variable and additional selectors

2009-12-11 Thread John Arrowwood
to get those divs, manipulate them within entry? Entry is a jQuery so I thought I could do something like entry (.avatar)... or something but that's not right. Your guidance would be appreciated! -- John Arrowwood John (at) Irie (dash) Inc (dot) com John (at) Arrowwood Photography (dot

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 jeremy.coz...@gmail.com wrote: Check out the live function. It can solve

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 k...@englishrules.comwrote: 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

[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
for :target. --John On Thu, Sep 24, 2009 at 2:41 PM, Jack Bates jack.ba...@gmail.com wrote: $(':target') works in Firefox 3.5, but not Firefox 3.0 and some other browsers, http://www.sfu.ca/~jdbates/tmp/qubit/200909231/#aaahttp://www.sfu.ca/%7Ejdbates/tmp/qubit/200909231/#aaa ^ in Firefox 3.5

[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 mal...@gmail.com wrote: Over the past few months I've been fielding

[jQuery] jQuery content slider

2009-09-11 Thread John Corry
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 we can figure this out? -- John Corry PHP developer - 3by400, Inc http://www.3by400

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

[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: 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 vernworldw...@gmail.com wrote: Quick troubleshooting question: For the nav at mobilityidaho.org The delay

[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 jian.fang.subscr...@gmail.com wrote: Seems I should use css(), not attr(). On Aug 27, 3:46 pm, John jian.fang.subscr...@gmail.com wrote: Seems always begin

[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 jian.fang.subscr...@gmail.com 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 selector

[jQuery] Re: jQuery selector for style attribute

2009-08-27 Thread John
: 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 jian.fang.subscr...@gmail.com wrote: Also, it is not possible for us to use Ids because the ids are dynamically generated

[jQuery] Re: jQuery selector for style attribute

2009-08-26 Thread John
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 chiod...@gmail.com wrote: Maybe that that the style attribute value should be exactly equal to the one contained in html. I think

[jQuery] How to express the AND condition in jQuery

2009-08-26 Thread John
on this is appreciated. Thanks in advance, John

[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 morni...@gmail.com 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.pocoo.org/show/136392

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

2009-08-26 Thread John
, John On Aug 26, 1:25 pm, John jian.fang.subscr...@gmail.com 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 morni...@gmail.com wrote: Not sure if this is the only or best way or how fast

[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 mkeeganwatk...@gmail.com wrote: i wrote a really simple plugin for this, as i frequently have the same use case: jQuery.fn.outerHTML = function() {     return jQuery(div/).append( jQuery(this[0]).clone() ).html(); } so that i could

[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 jian.fang.subscr...@gmail.com 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

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

2009-08-26 Thread John
(splitted[i]).length 0); } return result; }; 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 jian.fang.subscr...@gmail.com wrote: Variable input variables are even better than an array. Thanks

[jQuery] Re: jQuery selector for style attribute

2009-08-26 Thread John
thing wrong here. Thanks, John On Aug 26, 6:45 am, Paolo Chiodi chiod...@gmail.com wrote: Maybe that that the style attribute value should be exactly equal to the one contained in html. I think style=A:B C:D doesn't match style=C:D A:B. May also be that the browser has

[jQuery] Re: jQuery selector for style attribute

2009-08-26 Thread John
the style attribute in Firefox, but still not working. :(. Thanks, John On Aug 26, 4:34 pm, James james.gp@gmail.com wrote: As Paolo mentioned, despite how it looks in a browser's source, the internal representation within the DOM may be different depending on the browser. In one browser

[jQuery] Re: jQuery selector for style attribute

2009-08-25 Thread John
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 css.mau...@gmail.com wrote: Sintax for the selector is: $('img[style=overflow: auto; width: 356px; height: 100px;]') Maurício   -Mensagem Original

[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 james.gp@gmail.com 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 telling you

[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 michaell...@gmail.com 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(): $('div').append( $(table:first

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

2009-08-18 Thread John
=aaa .. /table 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 mail.anurag@gmail.com wrote: Hi John, After setting the html by using html method you have to bind the DOM elements using bind method. Example

[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 jian.fang.subscr...@gmail.com 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

[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] 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] 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] 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 jeffkr...@hotmail.comwrote: My guess is its related to a problem

[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 gent...@gmail.com wrote: I got it to work by changing to this: $('#Row_1tdinput[type=text]').each(function() { $(this).val(''); }); John - Still want a bug filed for this? Thanks, Shane On Aug 12, 11:50

[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 danab1...@gmail.com wrote: I have developed a FF extension that loads

[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 i...@vincenzoferme.it wrote: Here: http://dev.jquery.com/ticket/4753, and Here: http://dev.jquery.com/ticket/4960 some users send this bug on bug tracker

[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

[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 micorre...@gmail.com 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...@name=submit]') with jquery

[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 zen...@gmail.com wrote: Still getting 2 alerts. On Jul 29, 11:49 am, Eric Garside gars...@gmail.com wrote: Pretty sure its because the event is bubbling

[jQuery] Re: My messages don't show?

2009-07-27 Thread John Resig
All messages are moderated - so it'll depend heavily upon when we're able to review them. --John On Mon, Jul 27, 2009 at 3:19 PM, Cesar Sanz the.email.tr...@gmail.comwrote: I takes about 3 hrs to display your first message. dunno why - Original Message - From: Jon Jackson j...@jon

[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 p...@hearwhere.com 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 a form

  1   2   3   4   5   6   7   8   9   >