[jQuery] Selection broken in Firefox 3.5.7

2010-01-19 Thread Jeff
Hi, I have the following code to ensure at least one report checkbox is checked on my page if ($(input[type='checkbox'][checked]).size() == 0) { $(#error).css(color, red).text(Please select at least one report.); return false; }

Re: [jQuery] problems with event triggering in IE6, presumably 5.5 as well.

2009-12-23 Thread Jeff @ FreeThought
was simply positioned outside of the div. Hope this helps. Jeff -- View this message in context: http://old.nabble.com/problems-with-event-triggering-in-IE6%2C-presumably-5.5-as-well.-tp15866207s27240p26906602.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.

[jQuery] Problem with assigning events to ajax generated content.

2009-12-09 Thread Jeff Berry
I am populating an unordered list with items from an ajax query, after which I want to attach click events to each list item. Using either load or $.get I'm able to retrieve the data and post it to the UL correctly. However, when I then try to immediately retrieve all the list items in that

[jQuery] Unable to parse XML in iframe with IE

2009-10-21 Thread Jeff Winters
, but it makes no difference. Am I doing anything wrong? If not, how can I work around this issue? Thanks, Jeff

[jQuery] Re: Unable to parse XML in iframe with IE

2009-10-21 Thread Jeff Winters
I wrote a simple test case to demonstrate the problem: http://prune.da-shiz.net/uploads/jeff/tmp/ie-makes-me-a-sad-man/ Thanks, Jeff On Oct 21, 5:50 am, Jeff Winters jeff.twitiner...@micand.com wrote: Howdy! In my app, I have a file upload form that submits to an iframe, with the server

[jQuery] Re: Parse encoded HTML in XML content node

2009-09-25 Thread Jeff
://www.sample.com/2009/09/per- ma-link.htmlquot; style=quot;float: right;quot;gt;lt;img alt=quot;Lorem Ipsumquot; src=quot;http://img.srcquot;/content dc:creatorAuthor/dc:creator pubDateTue, 08 Sep 2009 19:33:00 -0400/pubDate /item /channel /rss On Sep 24, 8:38 am, Fabdrol fabd...@gmail.com wrote: Hi Jeff

[jQuery] Parse encoded HTML in XML content node

2009-09-23 Thread Jeff
from the above, ala: data.find('content p'); I get Undefined. I've tried all kinds of selectors, and nothing works. Finally data.find('content); returns object Object. Thanks, Jeff

[jQuery] Re: .find() not working on link node in XML document

2009-09-11 Thread Jeff
Thanks for the tip Michael. What I ended up doing was switching from $.get to $.ajax, and specifying my dataType as XML, and it works perfect now: http://docs.jquery.com/Ajax/jQuery.ajax#options

[jQuery] .find() not working on link node in XML document

2009-09-10 Thread Jeff
I've got a semantic XML document, for which I'm using $.get successfully to extract title and description nodes. The link node does not work, however. It returns blank. Strange, since I can see in Firebug that $(this) has 4 children, and link is in there. Here's the code:

[jQuery] Professional Training

2009-09-01 Thread Jeff
Does anyone know of college-level jQuery training/certification courses? I'm looking for something like Zend's PHP certification, but for jQuery. Thanks!

[jQuery] Re: Select element fires hover.

2009-07-31 Thread jeff
I have just tried putting the search control into an iframe and the same instances occur! Double Dang! Is there no way to have selectable form fields in a hovered div? Please, any insight is greatly appreciated. On Jul 30, 11:06 am, jeff jeffreykarbow...@gmail.com wrote: I am trying

[jQuery] jQuery effects speed cause hover to fire

2009-07-30 Thread jeff
I am trying to implement a div containing a form drop down on hover and I have everything working except for when I try to add any sort of animation or speed to the '.show' or '.hide' effect. When I try to add speed or seemingly any other effect to the div, the select elements of the search form

[jQuery] Re: jQuery effects speed cause hover to fire

2009-07-30 Thread jeff
Upon further testing, the said script doesn't work in IE, only in FF. In IE (6,7, and 8) the hover event is fired when an option is selected... bummer :( On Jul 30, 10:25 am, jeff jeffreykarbow...@gmail.com wrote: I am trying to implement a div containing a form drop down on hover and I have

[jQuery] Select element fires hover.

2009-07-30 Thread jeff
I am trying to implement a div containing an advanced search form drop down on hover and I have everything working (only in FF) except for when I try to add any sort of animation or speed to the '.show' or '.hide' effect. When I try to add speed or seemingly any other effect to the div, the

[jQuery] $.post-ing data brackets as first character of form value adds semi-colon to input name

2009-07-14 Thread Jeff Nouwen
within, but the value comes through unchanged; it's only its name that is modified. Is this a jQuery issue, or does my bug lie elsewhere? Thanks! - Jeff

[jQuery] Re: $.post-ing data brackets as first character of form value adds semi-colon to input name

2009-07-14 Thread Jeff Nouwen
On Jul 13, 3:54 pm, Jeff Nouwen jnou...@gmail.com wrote: My PHP script is being called through CodeIgniter, but I don't immediately see anything in its code that would cause the addition of the semi-colon. And upon closer inspection of CodeIgniter's source, it is indeed the cause of my

[jQuery] Re: how to change 2,5 to 2,50 ?

2009-07-07 Thread jeff
ha ha good work :) On Tue, Jul 7, 2009 at 4:29 PM, weidc mueller.juli...@googlemail.comwrote: solved it by myself. endpreis =Math.round(endpreis*100)/100; endpreis = endpreis+ foo; endpreis = endpreis.replace(/ foo/,); var cent = endpreis.split(.); if(cent[1].length == 1) {

[jQuery] Re: Kicking off an Israeli users group

2009-07-07 Thread jeff
include the cakephp + jquery usage and how to get the value from jquery to a controller in cakephph with refrence site or examples On Tue, Jul 7, 2009 at 12:42 PM, Refael ref...@gmail.com wrote: Hello all, I'm kicking off an Israeli Users group, with a users meet-up. Do you have

[jQuery] Re: Tutorial evaluation

2009-07-07 Thread jeff
looks like this could of good help but ur next link doesnt seems to work Also a request, am using cakephp framework so could u help in showing how to use jquery with cakephp and retreive values from jquery to a controller in cakephp.. this will be a challenge i

[jQuery] IE6 Background Image Flicker

2009-06-17 Thread Jeff
Since jQuery.browser and jQuery.browser.version are depreciated as of jQuery 1.3, what is the preferred way to check if the browser (in this case IE6) needs to have the BackgroundImageCache set? The closest match I see is jQuery.support.opacity, but I'm not sure if that is pertaining to how the

[jQuery] How to check if an element is done loading

2009-06-05 Thread Jeff Rose
that links to a local resource instead. My only hang-up is I'm not sure how to check if the iframe or img is done loading. Any help would be greatly appreciated. -Jeff

[jQuery] CSS attributes as a variable.

2009-06-02 Thread jeff
Hello, I am trying to get the color of an element and change the color of another element with that color. Does this make sense? What is wrong with this? I would like all of the H1 tags to inherent the color of .ui-state-error. Thank you in advance! $(function(){ var color =

[jQuery] Re: CSS attributes as a variable.

2009-06-02 Thread jeff
Worked! Thanks!!! On Jun 2, 2:58 pm, waseem sabjee waseemsab...@gmail.com wrote: something like this var mycolor = #000; $(h1).css({color:mycolor }); this is your statement 'color', ' + color + ' it should be color:color On Tue, Jun 2, 2009 at 8:50 PM, jeff jeffreykarbow

[jQuery] How to tell if $(window).load() has already fired

2009-05-21 Thread Jeff
I have a script that is being inserted dynamically via another script. The code in that script is wrapped inside the $(window).load () event because it requires the images on the page to have all loaded. In some browsers it works fine, but in others it seems not to fire because the page has

[jQuery] Re: $.get() fetch a list of images

2009-05-21 Thread Jeff
Without the markup it's hard to provide a complete solution, but if I run this it works for me: $(document).ready(function(){ // Start with faked $.get() results [since that part works] var received = 'image1.png,image2.png,image3.png';

[jQuery] Re: $.get() fetch a list of images

2009-05-21 Thread Jeff
The problem is that while this section of your code is waiting for the ajax response: $.get('ajax.txt', function(data) {     splitted = data.split(','); }); This section is already running... var slide = $(elm).attr('slide'); var total = splitted.length; var next = slide+1 var picture =

[jQuery] Re: state of the art for corner rounding?

2009-05-03 Thread Jeff Jones
As far as safari / chrome goes you can use webkit- similar to moz- The only real browser behind the times is IE. On May 2, 2:41 pm, kiusau kiu...@mac.com wrote: On May 2, 5:21 am, Richard D. Worth rdwo...@gmail.com wrote: One of the best ones I've seen lately is DD_roundies, by Drew

[jQuery] Re: slideUp and slideDown works only once

2009-04-25 Thread Jeff Jones
I'm not sure what your ultimate goal is, but you might try the cycle plugin. It has a lot of flexibility. http://plugins.jquery.com/project/cycle On Apr 24, 8:07 pm, adw999 adw...@googlemail.com wrote: I tried using slideToggle but the screen flickers badly, any reasons for this? Thanks

[jQuery] Re: jQuery in Firefox extension is broken in v1.3.2

2009-04-05 Thread Jeff Jones
What add-ons do you have installed in Firefox? And do you have a public page we can test with our Firefox clients? On Apr 4, 9:07 am, bjorn.frant...@gmail.com bjorn.frant...@gmail.com wrote: I've seen this post now, but I can's see my problem mentioned there. My extension breaks the toolbar

[jQuery] tableFilter - tablesorter

2009-03-04 Thread Jeff Gentry
Hi all ... First, my knowledge of javascript in general and jQuery in particular is relatively weak, but growing. Just a disclaimer :) I'd been using the tableFilter plugin on another project (http://ideamill.synaptrixgroup.com/?page_id=16), it's main drawback was that it was old no longer

[jQuery] Can't get tablesorter to work

2009-03-02 Thread Jeff Gentry
Hello ... First, apologies if this is effectively a double post, I didn't see my initial message go through, but it might be google groups being bogged down. I'm trying to get tablesorter to work - it works AOK when I look at examples online, but not when I'm driving it myself. I'm trying to

[jQuery] Re: Can't get tablesorter to work

2009-03-02 Thread Jeff Gentry
, and Chrome On Mar 2, 11:34 am, Jeff Gentry jgen...@jimmy.harvard.edu wrote: Hello ... First, apologies if this is effectively a double post, I didn't see my initial message go through, but it might be google groups being bogged down.  I'm trying to get tablesorter to work - it works AOK when

[jQuery] Re: Tab scrolling

2008-12-01 Thread Jeff Stevens
Hi Jecki, Thank you for your example. I have tested it, but may be it is not work in IE 6.0. Could you give me any updated? Regards, Jeff On Nov 12, 11:30 pm, Jecki [EMAIL PROTECTED] wrote: Hi, I manage to get the things up herehttp://www.uphigh.org/tab/index.html . The slow connection

[jQuery] Re: Jeditable and TinyMCE

2008-10-23 Thread Jeff
I am trying to use tinyMCE with the jEditable plugin and sometimes get an error. the html editor won't show up and i get the error t.win.document is null. anyone know what this is and if it's an MCE issue or jEditable? thanks Jeff On Sep 14, 4:02 pm, Mika Tuupola [EMAIL PROTECTED] wrote

[jQuery] [Forms Plugin] Reloading/Refreshing an iFrame after success

2008-10-16 Thread -Jeff-
for any help, -jeff -- View this message in context: http://www.nabble.com/-Forms-Plugin--Reloading-Refreshing-an-iFrame-after-success-tp20015952s27240p20015952.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.

[jQuery] [validate] ignore an iframe element

2008-10-16 Thread -Jeff-
[on + event.type] validator.settings[on + event.type].call(validator, this[0] ); } Is there any way to have the Validate plugin not check anything in this div, iframe, or form? Thanks in advance for any assistance, -jeff -- View this message in context: http://www.nabble.com/-validate--ignore

[jQuery] Re: [validate] ignore an iframe element

2008-10-16 Thread Jeff Strahl
Due to the sensitivity of the application, I will put something similar together tonight that best reproduces the scenario. Thanks, -jeff -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jörn Zaefferer Sent: Thursday, October 16, 2008 5:10 PM

[jQuery] Re: [validate] ignore an iframe element

2008-10-16 Thread Jeff Strahl
Here is a simple mock up of the elements in question. The error persists when you click the 'button' to upload an image. http://prolabor.com/testform/ Thanks for your help with this matter. -jeff -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf

[jQuery] [Validate] Validation + Masked Input Issue

2008-09-26 Thread Jeff Papp
the field as valid even though the field is still blank. I looked at the Marketo demo and the same behavior occurs there. Is there a workaround to get it to keep the field invalid after you go in and out of the textbox? Thanks, Jeff Papp

[jQuery] Re: getJSON not working in IE

2008-08-22 Thread Jeff
Try to append to the thead tag instead of the table tr tag.

[jQuery] [validate] Submit button that doesn't validate form.

2008-07-16 Thread Jeff
I want to have one submit button that validates and processes the form, and I want one inside the form for a different purpose. However they both validate the form. How do I stop it from validating?

[jQuery] jCarousel Safari bug

2008-06-25 Thread Jeff Hartman
of the page with the carousel and the bug presents itself again. Jeff

[jQuery] Re: Safari 2.0.4 not passing the jQuery test

2008-06-22 Thread Jeff Kenny
if you could publish what the pieces are so that we (the jQuery using public) know what we should be looking out for. Thanks for the reply, even if we disagree on compatible. :-) Jeff On Jun 19, 9:43 am, John Resig [EMAIL PROTECTED] wrote: Jeff - Safari2 has serious memory issues

[jQuery] Safari 2.0.4 not passing the jQuery test

2008-06-19 Thread Jeff Kenny
I'm working on a site and the js is crashing Safari 2.0.4, so I went back to check the compatibility page and it says it's supported. I ran the test page ( http://jquery.com/test/ ) in Safari 2.0.4 multiple times and it crashed EVERY time BUT at different places. So...my question is, is jQuery

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

2008-05-19 Thread Jeff Kenny
this and how it could be fixed? Thanks, Jeff

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

2008-05-19 Thread Jeff Kenny
I noticed this message after I posted mine, but apparently this this.funcResize() function is also what's causing IE 6 and 7 to scrollback when an item in the list is clicked. Here's my message:

[jQuery] cycle addSlideFn, timing using only a single slide as default

2008-05-01 Thread Jeff Friesen
I have been working with the addSlideFn. I love the idea, but I am having some problems implementing it. I have some ideas for improving it, but first here is what I ran into: I got addSlideFn to work in a somewhat simple case. Then I was having problems though when I tried to set a delay.

[jQuery] Re: jQuery Cycle - Hover Pager

2008-04-30 Thread Jeff Friesen
Great - works perfectly. thanks! I updated cycle so that you can specify the trigger event for the pager.  Here's a demo: http://www.malsup.com/jquery/cycle/pager5.html Mike

[jQuery] Re: cycle plugin: is there a simple cut transition?

2008-04-30 Thread Jeff Friesen
again, thanks for your help. It works great. Here's a demo that shows how to do immediate transitions: http://www.malsup.com/jquery/cycle/immediate.html Mike

[jQuery] cycle plugin: sIFR'ing cycle

2008-04-26 Thread Jeff Friesen
-contributed cycle transitions repository? I think that would be great to see what people come up with. thanks. -Jeff

[jQuery] cycle plugin: is there a simple cut transition?

2008-04-26 Thread Jeff Friesen
. thanks for any help.. -Jeff

[jQuery] Re: jQuery Cycle - Hover Pager

2008-04-26 Thread Jeff Friesen
I got this to work by hacking the original code but not with a custom transition. I am sure there is a more elegant way to do it (if anybody knows please post it!) You can hover over the pager to go through the slides. I hacked line 281 in the buildPager function: from:

[jQuery] Re: this ?

2008-04-11 Thread Jeff
Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeff Sent: Thursday, April 10, 2008 7:24 PM To: jQuery (English) Subject: [jQuery] this ? 'scuse me for the noob question here... i have statements like this: $(.highlight).removeClass; $(this:even).addClass

[jQuery] this ?

2008-04-10 Thread Jeff
'scuse me for the noob question here... i have statements like this: $(.highlight).removeClass; $(this:even).addClass(shaded); And I don't think I'm using this or :even correctly; it doesn't work =) Googling has turned up some different ways that the this keyword is used, and I'm not sure

[jQuery] Re: Sorting multiple tables by the same criteria

2008-04-07 Thread Jeff
Uhh, nevermind I guess. I'm just combining them into one table and using CSS to display them in different positions. Not really what I wanted, but it works. On Apr 4, 2:01 pm, Jeff [EMAIL PROTECTED] wrote: Hi, I'm relatively new to jQuery and I'm using jquery.tablesorter to sort a table

[jQuery] Sorting multiple tables by the same criteria

2008-04-04 Thread Jeff
! -Jeff

[jQuery] Re: checkbox and toggle function

2008-01-11 Thread jeff w
yeah, I am having the same issue. Anyone have a solution?? thanks! On Jan 8, 12:06 pm, jpl80 [EMAIL PROTECTED] wrote: Using toggle() with a checkbox disables the checkbox's ability to check itself on and off. http://tinyurl.com/yo9onzhttp://tinyurl.com/yo9onz -- View this message in

[jQuery] toggle function on checkbox

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

[jQuery] Re: toggle hide show function not working (code provided)

2007-11-21 Thread Jeff
You can also use $(expr).empty(). On Nov 21, 1:49 pm, mdrisser [EMAIL PROTECTED] wrote: The problem is that .remove() removes the actual element not the text inside of it. This works: $(a.collapse).html((-)); On Nov 21, 10:35 am, FrankTudor [EMAIL PROTECTED] wrote: script

[jQuery] Re: I'm confused on how to parse XML using jquery's ajax feature.

2007-11-19 Thread Jeff
Uh, why are you sending that email out? That looks like you are phishing. On Nov 19, 12:34 pm, Glen Lipka [EMAIL PROTECTED] wrote: Pretend it's html. As if it was a div and a span. It works the same way. $(mtemplate receiver).text() Glen On Nov 18, 2007 7:04 PM, [EMAIL PROTECTED]

[jQuery] problems using variables instead of text with :contains()

2007-11-13 Thread jeff
I am a little confused on the syntax for :contains. I want to be able to pass in a variable to the parameter for :contains. It can take either quoted or non-quoted text, which on one hand can be convenient, but on the other is difficult if you are trying to pass a variable. Here is the test

[jQuery] Re: .get works in Firefox, but not IE

2007-10-24 Thread Jeff
I'm having the same issue with IE. Works in FF. On Oct 17, 1:51 pm, cfdvlpr [EMAIL PROTECTED] wrote: Here's some code I have that works great in Firefox. But in IE, it this line does nothing: $ ('#bottomHalfofThickbox').html(updatedSamples); function redecorate(){

[jQuery] Basic JSON help

2007-08-16 Thread jeff w
Hello, I am new to jQuery, and have started to play with JSON,but I need some info about how I refer to the JSON Object once it is returned from the server. I know I can loop through the contents of the object, and I can use json.count, but I am really unsure about the correct syntax to target

[jQuery] Basic JSON help

2007-08-16 Thread jeff w
Hello, I am new to jQuery, and have started to play with JSON,but I need some info about how I refer to the JSON Object once it is returned from the server. I know I can loop through the contents of the object, and I can use json.count, but I am really unsure about the correct syntax to target

[jQuery] Re: Basic JSON help

2007-08-16 Thread jeff w
, jeff w [EMAIL PROTECTED] wrote: Hello, I am new to jQuery, and have started to play with JSON,but I need some info about how I refer to the JSON Object once it is returned from the server. I know I can loop through the contents of the object, and I can use json.count, but I am really

[jQuery] Re: Basic JSON help

2007-08-16 Thread jeff w
. --Erik On 8/16/07, Michael Geary [EMAIL PROTECTED] wrote: From: jeff w I am new to jQuery, and have started to play with JSON,but I need some info about how I refer to the JSON Object once it is returned from the server. I know I can loop through the contents of the object

[jQuery] convert an event object to a jQuery event object?

2007-07-25 Thread Jeff L
Hi, Is there a way to take a normal event object and convert it to a jQuery event object so everything gets normalized? Or can you only use the jquery event stuff when you use the jQuery events themselves? Hope this makes sense. Thanks, Jeff

[jQuery] Re: Problems with tablesorter

2007-07-24 Thread Jeff L
) { console.log('mouseout'); $(event.target).trigger('myEvent'); }).bind(myEvent,function(event) { console.log('my Event'); }); Any help is appreciated!! Jeff

[jQuery] Re: Problems with tablesorter

2007-07-24 Thread Jeff L
sorry didn't mean to hijack this email - i'll send a different one! On 7/24/07, Jeff L [EMAIL PROTECTED] wrote: Hi everyone, I'm trying to bind a custom event and then use trigger() to trigger it, but it's not working for me. Here's my code, does anyone see any issues? Currently it's logging

[jQuery] triggering a custom event is not working

2007-07-24 Thread Jeff L
) { console.log('mouseout'); $(event.target).trigger('myEvent'); }).bind(myEvent,function(event) { console.log('my Event'); }); Any help is appreciated!! Jeff

[jQuery] Re: Using AutoCompleter, how do you pass parameters

2007-07-18 Thread Jeff Fleitz
I am in the same boat (don't have the luxury of playing around). Jörn's version has been pretty stable, with the exception of the issues documented. The one problem I have is similar to yours, in that IE6 generates an error when mousing over.the selection list. Unfortuanely, at least 90% of the

[jQuery] Re: Autocomplete Plugin Issue With IE6

2007-07-16 Thread Jeff Fleitz
Will do what you suggested and get back to you. On Jul 12, 4:18 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote: Jeff Fleitz wrote: So, for all you gurus out there, how do you track down this type of issue in IE6? Since Firebug doesn't report an error, that doesn't help. Do you use other

[jQuery] Autocomplete Plugin Issue With IE6

2007-07-12 Thread Jeff Fleitz
proxies like Fiddler? Any help appreciated. Regards, Jeff

[jQuery] FishEye Math

2007-07-10 Thread Jeff (Gmail)
I am playing around the with great Interface plugins, the http://interface.eyecon.ro/demos/fisheye.html in particular and was wondering if anyone had played around with the code to allow for different sized images to be used, rather than a single size? Any math wiz that could point me in the

[jQuery] Re: Selector docs?

2007-07-02 Thread Jeff L
You can use the google cache http://72.14.205.104/search?q=cache:yFpDK0JxvV4J:docs.jquery.com/DOM/Traversing/Selectors+jquery+selectorshl=enct=clnkcd=2gl=usclient=firefox-a Jeff On 7/2/07, Howard Jones [EMAIL PROTECTED] wrote: Naturally, the day I pick to sit down and play with a new jquery

[jQuery] Re: Selector docs?

2007-07-02 Thread Jeff L
Benjamin, That's just a blog - if there is a specific page on there about the selectors, please do send along a link. Thanks. On 7/2/07, Benjamin Sterling [EMAIL PROTECTED] wrote: Howie, Check out learningjquery.com On 7/2/07, Howard Jones [EMAIL PROTECTED] wrote: Naturally, the day I

[jQuery] Re: Hide DIV on page click help

2007-05-22 Thread Jeff
bump On May 17, 4:20 pm, Jeff [EMAIL PROTECTED] wrote: That works great, but how do I get it to ignore clicks to the div itself? Thanks On May 15, 9:43 pm, RobG [EMAIL PROTECTED] wrote: On May 16, 1:36 am, Jeff [EMAIL PROTECTED] wrote: I am trying to add some functionality to my page

[jQuery] Re: Hide DIV on page click help

2007-05-17 Thread Jeff
That works great, but how do I get it to ignore clicks to the div itself? Thanks On May 15, 9:43 pm, RobG [EMAIL PROTECTED] wrote: On May 16, 1:36 am, Jeff [EMAIL PROTECTED] wrote: I am trying to add some functionality to my page where a user clicks on a link which makes a menu layer

[jQuery] Hide DIV on page click help

2007-05-15 Thread Jeff
I am trying to add some functionality to my page where a user clicks on a link which makes a menu layer visible. That part I've been able to do. Now, I would like that DIV to disappear when the user clicks anwhere else on that page, on other words, making the menu disappear when it loses focus.

[jQuery] Re: Changing type input on IE

2007-05-10 Thread Jeff L
untested, but something like this? $('#btnEnviar').before('input type=button id= + $(this).id + /input').remove(); Jeff On 5/10/07, Harlley Roberto [EMAIL PROTECTED] wrote: Hi, I need to do this: $(#btnEnviar).attr(type, button); But accordind to my googled, I think that it's

[jQuery] Re: Live Example Question

2007-05-10 Thread Jeff L
basically it's saying to show it if it's hidden, or hide it if it's visible. see more info here: http://www.jquery.com/Selectors#Custom_Selectors_2 On 5/10/07, c19h28o2 [EMAIL PROTECTED] wrote: Thanks, can you please explain the why the p.firstparagragh has :hidden beside it? it doesn't

[jQuery] Re: Select Length Reference

2007-05-08 Thread Jeff Fleitz
of the first option in oSelect and if it is blank (), then remove it? Is there a way to check to see if an option value is contained within the select without looping (does jQuery have native functionality to do this)? Jeff

[jQuery] Select Length Reference

2007-05-07 Thread Jeff Fleitz
this?). Why aren't these equivalent? var num = document.getElementById('mySelect').length // returns 5 var num = $(#mySelect).length // returns 1; doesn't change so I know this isn't correct. TIA, Jeff

[jQuery] Re: Select Length Reference

2007-05-07 Thread Jeff Fleitz
Worked, thanks Dennis. On May 7, 11:15 am, spinnach [EMAIL PROTECTED] wrote: try $(#mySelect)[0].length ...

[jQuery] Re: Select Length Reference

2007-05-07 Thread Jeff Fleitz
? for (i = $(#mySelect)[0].length - 1; i=0; i--) { if ($(#mySelect option:selected)[i]) { $(#mySelect).removeOption(i); } } As always, thanks much. Jeff

[jQuery] Re: Select Length Reference

2007-05-07 Thread Jeff Fleitz
option:selected).remove(); I have learned a lot. Thanks again. Jeff

[jQuery] Re: Select Length Reference

2007-05-07 Thread Jeff Fleitz
get my head wrapped around the syntax. I whacked a whole bunch of lines of code from the very first go 'round, I can tell you that. Geez, somebody ever sees this, they might actually mistake me for somebody who knows what they are doing ;) Thanks again. Jeff

[jQuery] Re: Autocomplete plugin

2007-05-03 Thread Jeff Fleitz
Dan Switzer's implementation and a combo of procedural js and jquery syntax, but i am trying to get it work here to, using all jquery stuff, so that we are onboard when this plugin becomes the primary implementation. Regards, Jeff On May 2, 5:00 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote

[jQuery] Re: Pass objects to Ajax Success

2007-05-03 Thread Jeff
I should add that calling the row by name is not an option as the rows do not have unique ids On May 3, 2:50 pm, Jeff [EMAIL PROTECTED] wrote: I have run into a problem. I am attachking a click() event to every row of an inventory table. When the user clicks on the row, it fetches detailed

[jQuery] Re: Pass objects to Ajax Success

2007-05-03 Thread Jeff
you are the man! On May 3, 3:25 pm, Jonathan Sharp [EMAIL PROTECTED] wrote: Hi Jeff, You just need to use a closure. Outside your ajax call do $t = $(this); and then you can reference $t inside of your anonymous function. See below... Cheers, -js $(document).ready(function

[jQuery] Re: Autocomplete plugin

2007-05-02 Thread Jeff Fleitz
] reference. Jeff

[jQuery] Re: Autocomplete plugin

2007-04-27 Thread Jeff Fleitz
that make sense? Jeff Thats a bit trickier. As you noticed, the event is called for each selected value. The second autocomplete in the demo appends the associated values to a different input one by one. In case the plugin handles that directly, how should it work like?

[jQuery] Re: Autocomplete plugin

2007-04-26 Thread Jeff Fleitz
. Jeff Try $(#suggest2+pk).val( data[1] ) or $(this).next().val( data[i] ); And first check if the #suggest2+pk selector really selects your hidden input. -- Jörn Zaefferer http://bassistance.de

[jQuery] Re: Autocomplete plugin

2007-04-25 Thread Jeff Fleitz
).result(function(event, data, formatted) { $(this).find(..+/input).val(data[1]); }); Jeff

[jQuery] Re: Autocomplete plugin

2007-04-25 Thread Jeff Fleitz
, how is that function going to update the hidden field, when there is no reference to it? I tried assigning the hidden field value in the code above, like the following. $(#suggest2+pk).value = $(this).find(..+/input).val(data[1]); I may just go back to using yours, which works fine. Thanks, Jeff

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-18 Thread Jeff Fleitz
Boy I feel like a dummy, but I can't even find that line in my jQuery script. I am testing with jQuery 1.1.2 unpacked. Is that what we are talking about? I might be having a similar problem and want to test against that by commenting this out as well, but it helps if you can find it first.

[jQuery] Re: Autocomplete plugin

2007-04-18 Thread Jeff Fleitz
Yeah, thats what I did. Didn't work. Hmmm. On Apr 18, 11:40 am, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Jeff, What did you do to fix this issue? $(#addunit_lookup).autocomplete( qryUnitLookup.cfm, { I used the fully qualified URL. So instead of: qryUnitLookup.cfm I use

[jQuery] Re: Autocomplete plugin

2007-04-18 Thread Jeff Fleitz
My bad. You were right about 1) The culprit was the indicator.gif file. I had moved the css file to a different folder and it broke the reference. Things are working now. Thanks. Jeff On Apr 18, 12:36 pm, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Jeff, Yeah, thats what I did. Didn't

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-18 Thread Jeff Fleitz
Yeah, I found that. I was looking for 'transport' instead of 'xml'. I believe I will leave it alone as I don't think it is causing me problems. Thanks all. On Apr 18, 1:37 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote: Dan G. Switzer, II schrieb: Jeff, Boy I feel like a dummy, but I can't

[jQuery] Re: Release: autocomplete 1.0 alpha

2007-04-18 Thread Jeff Fleitz
and uses your third option (disallowing the already selected option to be selected again), and while it works great, the users all commented they would rather not see the option displayed once again, once it has been selected. Jeff On Apr 18, 1:28 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote: Jeff

  1   2   >