[jQuery] Re: autocomplete questions

2008-09-10 Thread Shelane Enos
am, "[EMAIL PROTECTED]" >> >> <[EMAIL PROTECTED]> wrote: >>> Sorry I wasn't very clear, I don't mean to have your users do that, I >>> mean it gave you a clue how that function worked. >>> You need to add an on-focus event to th

[jQuery] Re: autocomplete questions

2008-09-08 Thread Shelane Enos
Adding the following resulted in the search string being sent to the server, but the results weren't displayed (I can see the results with Firebug): $('#topic1').focus(function(){  $('#topic1').search(); }); On 9/8/08 11:59 AM, "MorningZ" <[EMAIL PROTECTED]> wrote: > > For #2 > > perhaps

[jQuery] Re: autocomplete questions

2008-09-08 Thread Shelane Enos
This worked. Thanks. Now, if I can just get something for question 2 :-) On 9/8/08 10:45 AM, "MorningZ" <[EMAIL PROTECTED]> wrote: > > For > > "Can you submit additional parameters based on the value of another > input field?" > > http://docs.jquery.com/Plugins/Autocomplete#Dependencies_be

[jQuery] Re: autocomplete questions

2008-09-08 Thread Shelane Enos
Yes, I saw that little enter then back space. That's horrible user interface to rely upon. Users wouldn't know that and I'd hate to tell them to do that. I'm not sure how I would accomplish your proposed work-around. On 9/8/08 10:24 AM, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > > For

[jQuery] 1.2.4 to 1.2.6 question

2008-07-08 Thread Shelane Enos
I just found out that this function that worked (doubled checked to confirm) worked under 1.2.4 but isn't working under 1.2.6. I'm not sure what. Can anyone see anything obvious? bindDeleteLinks = function(who){ $("a.rembtn", '#' + who).unbind('click'); $("a.rembtn", '#' + who).

[jQuery] Re: JQuery 1.2.6 and JQuery Form Plugin in IE7

2008-07-07 Thread Shelane Enos
Naming conventions have always been my problem. What types of names do you (anyone) give these necessary parameters? On 7/7/08 10:59 AM, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > >> I have set up a test page that shows this problem.  It works in FF but not >> IE. >> >> http://education.llnl.

[jQuery] Re: JQuery 1.2.6 and JQuery Form Plugin in IE7

2008-07-07 Thread Shelane Enos
I have set up a test page that shows this problem. It works in FF but not IE. http://education.llnl.gov/uploads/testup.lasso Mike, can you look into this. If you already have, do you have an estimate as to when this will be fixed? Thanks. On 7/3/08 2:05 PM, "Shelane" <[EMAIL PROTECTED]> wro

[jQuery] Re: pausing a link and resuming its normal behavior

2008-06-05 Thread Shelane Enos
I actually found that in this case I'm using jqModal, it stops the click of the a. however, in order to make it go to where the link would be after they have done their login through jqModal, I have a form on the page that I'm submitting. Not the most elegant, but it gets the job done. On 6/4/

[jQuery] Re: second time jquery is included, kills previously called plugins

2008-05-19 Thread Shelane Enos
That was perfect. Thanks. On 5/19/08 8:00 AM, "Ariel Flesler" <[EMAIL PROTECTED]> wrote: > > //include first > > jQuery(function( $ ){ >// $ will be the first jQuery >$('#bodyframe').corner('tr'); > }); > > // include second > > You can also use jQuery.noConflict(); > > Cheers >

[jQuery] Re: ready and jquery 1.2.3

2008-04-03 Thread Shelane Enos
That was just a simple example. Richard made a good point though. It's also about having "unobtrusive javascript." John Resig made the point that the doc ready is supposed to help the user not experience weird display issues vs doing doc onload (things appearing on load and then disappearing).

[jQuery] Re: Caching issues jqModal??

2008-03-28 Thread Shelane Enos
I don't like having to do "work arounds" either when it's really a bug with the plugin. I tried contacting the developer directly, but never got a response. On 3/28/08 3:01 AM, "Kenny1980" <[EMAIL PROTECTED]> wrote: > > > Thanks Shelane! That did the trick!! > > Though its still a workaroun

[jQuery] Re: determining if table contains rows

2008-02-17 Thread Shelane Enos
Worked perfectly with one modification (reverse of logic) if ($('tbody > tr', '#documents').length == 0) { $('thead').hide(); } Thanks. I guess I haven't used the > as part of any of my selectors before. On 2/17/08 11:10 AM, "Karl Swedberg" <[EMAIL PROTECTED]> wrote: > > To see if there

[jQuery] Re: prepend - but make second item instead of first

2008-02-16 Thread Shelane Enos
You, Mr. Steve Davis, a newb to javascript? ;-) Glad you came to be part of the jQuery group. Many of us started going that direction after I got back from a Lasso conference last year. One of those, "I could have had a V8" moments. I just need to add the tbody tags to my table. I can get lazy

[jQuery] Re: ajax form plugin question

2008-02-15 Thread Shelane Enos
I would not have been able to post the page since it¹s an internal app. However, I commented out the $('#docform').ajaxForm(); When it submitted the form as normal, I was able to see what the server was returning and there was an error in the JSON. That is now fixed and I¹m working on the next st

[jQuery] Re: ajax form plugin question

2008-02-15 Thread Shelane Enos
The form submits when I click the submit button on the form. But the addDoc function doesn't fire. Not even when I simply reduced it to "alert('hello world)." What I don't know is what data is coming back from the server and if there's a problem. If there is no problem from the server, why isn

[jQuery] Re: autocomplete bug when focus called

2007-12-10 Thread Shelane Enos
http://education.llnl.gov/jquery/adv_auto3.lasso On 12/6/07 2:43 PM, "Shelane Enos" <[EMAIL PROTECTED]> wrote: > > So that I can optimize my autocomplete, I'd like your opinion. > > There are cases where there might be a couple hundred results - even if the > full n

[jQuery] Autocomplete bigiframe

2007-12-06 Thread Shelane Enos
Has anyone found a way to solve this display problem on IE: http://education.llnl.gov/jquery/bigiframe.png Demoed here: http://education.llnl.gov/jquery/adv_auto3.lasso (type mod)

[jQuery] Re: autocomplete bug when focus called

2007-12-06 Thread Shelane Enos
27;#user').autocomplete("tools/people.lasso", {minChars: 2, delay: 150, formatResult: formatResult, formatItem: formatItem, max: 2000, width: 300}); On 12/6/07 11:41 AM, "Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > > Shelane Enos schrieb: >> Sorry it t

[jQuery] Re: autocomplete bug when focus called

2007-12-05 Thread Shelane Enos
Sorry it took a while. I had a very busy day. This example shows the focus bug: http://education.llnl.gov/jquery/adv_auto2.lasso This example shows the other bug: http://education.llnl.gov/jquery/adv_auto3.lasso This bug is the bug where the first set of results will override the second. I watc

[jQuery] MacWorld new site using jQuery

2007-12-03 Thread Shelane Enos
http://beta.macworld.com/ Right in the source, you can see jquery-1.2.1.min.js and jquery.taconite.js.

[jQuery] Re: autocomplete new dependency

2007-11-27 Thread Shelane Enos
I the process of putting an example file on my external site, I found I wasn't having the same problem (with the new .js file). So I updated my style sheets internally to match what I had externally and it fixed the scrollbar problem. Is the below plugin still required now that you're requiring

[jQuery] Re: autocomplete new dependency

2007-11-26 Thread Shelane Enos
The min version I downgraded to is 2384. So, I'm trying to figure if 3917 fixes the problem of the results showing then being replaced with a less granular results set. 3917 is the one where I had the problem with the horizontal scrollbar showing up on Firefox. On 11/26/07 4:39 PM, "Stefan Kil

[jQuery] Re: autocomplete new dependency

2007-11-26 Thread Shelane Enos
What is the complete dependency list now? Was the results issue I was having in Rev 2384 fixed with your latest? Tomorrow morning (pacific time here - currently 4:30 PM on Nov 26) I'll see about updating my external pages to demo my problem. I'm heading out in 15 minutes, so I can't work on it

[jQuery] Re: Karl, cluetip questions: Select IE6 bug ETA, and incorporating JTIP?

2007-08-23 Thread Shelane Enos
Karl, I¹ve been really excited to see the progression of this plugin. It¹s looking really great and there has been a lot of wonderful feedback. I think it¹s one of the best documented plugins I¹ve seen. I don¹t see a ³remaining issues² list. How far are we from going 1.0? Can¹t wait :-) Than

[jQuery] Re: named function vs anonymous functions

2007-07-27 Thread Shelane Enos
So what is "myObject"? On 7/27/07 1:38 PM, "Jeffrey Kretz" <[EMAIL PROTECTED]> wrote: > > So far as I know, > > $(this).change(myObject.myFunc); > > will work fine. But when the myFunc is executed, any reference to "this" > inside that function will refer to the object that triggered the ch

[jQuery] Re: 1.1.3.1 breaks jqModal in IE6

2007-07-27 Thread Shelane Enos
Was this for r10? How about r9? It appears to be different and I'm not sure what to change. On 7/27/07 7:30 AM, "Wizzud" <[EMAIL PROTECTED]> wrote: > > > The problem is caused by the browser detection method being used to determine > IE6. The test used is: > > ie6=$.browser.msie && typeof X

[jQuery] Autocomplete - form elements in IE

2007-07-16 Thread Shelane Enos
For the lastest version of the autocomplete plugin ( http://dev.jquery.com/browser/trunk/plugins/autocomplete/), I added the z-index: 9 to the .ac_results class, but I'm still seeing other HTML elements float up above it in IE. Any help in this topic? I have included the plugin dependencies

[jQuery] Re: jqModal caching ajax requests

2007-07-11 Thread Shelane Enos
is because of jqModal and not on jQuery? > > Thanks > james > > On May 25, 12:40 am, Shelane Enos <[EMAIL PROTECTED]> wrote: >> I agree about it being strange behavior. I emailed Brice directly about it >> and haven¹t heard back. I also haven¹t seen him on the list r

[jQuery] Re: Jörn's autocomplete - que stion

2007-06-28 Thread Shelane Enos
Is there an option to not turn on the bolding for the search results? On 6/28/07 3:14 PM, "Shelane Enos" <[EMAIL PROTECTED]> wrote: > > I changed options to this: {minChars: 3, delay: 300, max: 1000, mustMatch: > true, cacheLength: 1, matchSubset: false} > >

[jQuery] Re: Jörn's autocomplete - que stion

2007-06-28 Thread Shelane Enos
ading icon displays) to show "no results" to the user? On 6/28/07 3:02 PM, "Shelane Enos" <[EMAIL PROTECTED]> wrote: > > OK, since I do want a "mustMatch" scenario, I shouldn't worry about the > first firing of the autocomplete? > > I see

[jQuery] Re: Jörn's autocomplete - que stion

2007-06-28 Thread Shelane Enos
OK, since I do want a "mustMatch" scenario, I shouldn't worry about the first firing of the autocomplete? I see a couple of different options related to caching: matchSubset, cacheLength. Do I need to set cacheLength to 1 and matchSubset to false? So because of the "comma" even with multiple by

[jQuery] Re: Jörn's autocomplete - que stion

2007-06-28 Thread Shelane Enos
OK, I'm responding to multiple emails here. http://education.llnl.gov/jquery/autocomplete.html There is no result or search being called. There is a value attribute in the field, but no value. I changed the option and now that's working. I think the arrows down in "more" is what is a little de

[jQuery] Re: Jörn's autocomplete - que stion

2007-06-28 Thread Shelane Enos
Yeah, I'm definitely working on that now because I'm seeing a few other oddities. I'll let you know as soon as I have it up. On 6/28/07 1:46 PM, "Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > > Shelane Enos wrote: >> (I wish this was some where th

[jQuery] Re: Jörn's autocomplete - que stion

2007-06-28 Thread Shelane Enos
I only need it in at least a simi-usable state for now :-) Is there a known bug for why it's firing at page load? Here is my new call: $("#univrelations").autocomplete("/tools/univfull.lasso", {minChars: 3, delay: 300, limit: 1000, mustMatch: true}); It still sends limit 10. Is there a known b

[jQuery] Re: Jörn's autocomplete - que stion

2007-06-28 Thread Shelane Enos
Alright, so that just show's how my day is going. That fixed the second problem. The results are now displaying. However, the "more" that shows at the bottom of the list isn't doing anything. Also, why is it firing at the start? On 6/28/07 1:03 PM, "Dan G. Switzer, II" <[EMAIL PROTECTED]> wr

[jQuery] Re: Jörn's autocomplete - que stion

2007-06-28 Thread Shelane Enos
Also getting this error now: element.css({width:typeof options.width == "string" || options.width > 0 ? options.width : jQuery(input).width()}).below is not a function https://cand-dev.llnl.gov/resources/javascripts/jQuery/jquery.autocomplete.j s On 6/28/07 12:27 PM, "She

[jQuery] Re: Jörn's autocomplete - que stion

2007-06-28 Thread Shelane Enos
I'm at a loss with even the basics right now. For some reason the remote file is getting called when the page loads: GET: https://cand-dev.llnl.gov/tools/univfull.lasso?q=&limit=10 It does execute again when I enter my 3 letters and returns results, only they don't show.

[jQuery] Jörn's autocomplete - question

2007-06-28 Thread Shelane Enos
Hey Jörn, When I downloaded your latest from svn and put that in place of the version I had from your website, my results no longer displayed. Your website still has the old version. What changed? Is there a new call I need to make? Another way to display the results? Does anyone have a worki

[jQuery] Re: New Plugin Repository

2007-06-19 Thread Shelane Enos
I had an account - which I can still login into - for the plugins wiki page, but that username/password doesn't work on the new plugin page. Do I need to create a new account?

[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-12 Thread Shelane Enos
Actually, I did manage to install Safari 3 and maintain Safari 2. To do this, you have to "copy" Safari 2 into another folder in the applications folder (I made one called Safari2). So Safari 2 exists in both the folder and the Applications folder. Then I ran the installer, which replaced the S

[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Shelane Enos
factor in the increase in productivity and the time that I've saved from > not fighting with windows so much anymore. > > Ok, . Back to work. > > --Erik > > > On 6/11/07, Chris W. Parker <[EMAIL PROTECTED] > wrote: >> >> On Monday, June 11, 2007 3:5

[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Shelane Enos
Works fine on my XP (the one that sits in the corner of my office), though I haven¹t used it extensively. I can¹t believe that they would bother, personally. But what is nice is that is applies smooth font so pages look like they do on the Mac :-) On 6/11/07 3:51 PM, "Mike Alsup" <[EMAIL PROTEC

[jQuery] Jquery presentation today

2007-06-11 Thread Shelane Enos
I'm giving a presentation today on jquery to our new development group. (my boss is now in charge of this group, previously under someone else here) is there any update on when 1.1.3 might be released? How close are we? Just was hoping I could say something about it. :-)

[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Shelane Enos
;> thanks Shelane! I've been tuned in since 10 am!!! >> >> >> On 6/11/07, Shelane Enos < [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> > >> wrote: >>> >>> Macrumors.com <http://Macrumors.com> is running a "continuous" AJAX update >>> of the keynote address >>> of WWDC. No more "update in 60 seconds" countdown. >>> >> >>

[jQuery] Macrumors running live udpates of WWDC

2007-06-11 Thread Shelane Enos
Macrumors.com is running a "continuous" AJAX update of the keynote address of WWDC. No more "update in 60 seconds" countdown.

[jQuery] Re: script killing IE

2007-06-04 Thread Shelane Enos
The blur actually does work. All I needed the blur to do was not show that box around the clicked link. I have now completely reconfigured this script. I think I was making it too difficult. This now works in IE: $(function(){ bindResults = function(){ $('#sbmsdata_1 a').click(func

[jQuery] Hover on image maps

2007-05-24 Thread Shelane Enos
Has anyone done hovers on images maps? Do they work well? What I think I want to do to replace my current solution is replace the "out" function based on the results of the click. That way the next time the user rolls over the image and rolls out, it will return to it's new "set" state instead

[jQuery] Re: Help Test jQuery 1.1.3

2007-05-24 Thread Shelane Enos
Is there still the possibility of a final release this week? I've tested against the basics and some of my more complicated internal apps and all is working well. On 5/24/07 1:10 PM, "John Resig" <[EMAIL PROTECTED]> wrote: > > Did you test it against the test suite? And did you test it for sp

[jQuery] Re: jqModal caching ajax requests

2007-05-24 Thread Shelane Enos
I agree about it being strange behavior. I emailed Brice directly about it and haven¹t heard back. I also haven¹t seen him on the list recently. On 5/24/07 9:06 AM, "emi polak" <[EMAIL PROTECTED]> wrote: > Thank you all guys for your input. Shelane, your workaround did the trick, 10x > again.

[jQuery] Re: IE Caching AJAX calls

2007-05-18 Thread Shelane Enos
I actually hadn’t dug through the jQuery code itself. So that’s saying that if I enter any additional parameter to the server, it will send a POST request? That may be good for me in most cases. On 5/18/07 11:24 AM, "?ⓐⓚⓔ" <[EMAIL PROTECTED]> wrote: > wow! it does! > load: function( url, p

[jQuery] Re: IE Caching AJAX calls

2007-05-18 Thread Shelane Enos
I just look at a page where I have .load and firebug shows GET. On 5/18/07 11:14 AM, "Brian Cherne" <[EMAIL PROTECTED]> wrote: > It's not documented (as far as I can tell) but if you send a params object to > .load() it should be sent via the POST method. I'm looking at the unpacked > source of

[jQuery] Re: IE Caching AJAX calls

2007-05-18 Thread Shelane Enos
Yep, Jason Huck did an awesome presentation at the Lasso Summit and that's why I'm here in this jQuery community now. On 5/18/07 10:55 AM, "Bil Corry" <[EMAIL PROTECTED]> wrote: > > ?ⓐⓚⓔ wrote on 5/18/2007 10:41 AM: >> looks like you got the headers

[jQuery] Re: Autocomplete plugin

2007-05-17 Thread Shelane Enos
I can't find the message that contained the link to the most current version. Can you send that again (I see the one on your website isn't the most up-to-date). On 5/17/07 3:05 PM, "Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > > Hi Brian and Shelane, > > the quietness isn't really a bad thin

[jQuery] Re: jqModal question

2007-05-16 Thread Shelane Enos
Ok, so I explained what I'm trying to do below, in part. I also have this function: statusChange = function(scope){ $('.invited, .accepted, .declined', scope).css('cursor','pointer').click(function(){ var url = 'ajaxunited.lasso?task=event&method=invitation&volunteer='; url

[jQuery] Re: jqModal question

2007-05-15 Thread Shelane Enos
Since I was doing an ajax request, I passed the ID of the item I wanted to change and had lasso display it on the modal¹s js. It¹s working great. Thanks. On 5/15/07 2:09 PM, "Shelane Enos" <[EMAIL PROTECTED]> wrote: > I haven¹t tried this yet, but just wondering... The imag

[jQuery] Re: jqModal question

2007-05-15 Thread Shelane Enos
I haven¹t tried this yet, but just wondering... The image I need to load is based on the results of what done in the modal and what result is returned from the server. Ideally, the action I perform on the modal (when something clicked) would also cause the modal to close. On 5/15/07 2:01 PM, "Be

[jQuery] Re: jqModal question

2007-05-15 Thread Shelane Enos
That did do it. Thanks. Another question. Is there a way to know the object that was clicked to open the modal so that when I do something in the modal I can reflect a change (in this case, replace the image that was clicked)? On 5/15/07 10:35 AM, "Benjamin Sterling" <[EMAIL PROTECTED]> wrote:

[jQuery] Re: Autocomplete plugin

2007-05-10 Thread Shelane Enos
The list has been quiet lately about this plugin's update development. How's it going? On 5/3/07 3:00 PM, "Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > > Jeff Fleitz schrieb: >> That was it! It looks so simple. Thanks, Jörn. >> > Ok, cool. >> I just received John Resig's Pro JS Techniques

[jQuery] Re: Plugin authoring

2007-05-08 Thread Shelane Enos
ng the values of a select element based on >> the user's choice of the source select element. As a jQuery plugin, it >> will create "unobtrusive" javascript to bind a change event to the >> source select element and retrieve JSON results from your server, >> pla

[jQuery] Plugin authoring

2007-05-08 Thread Shelane Enos
I wrote a plugin, but I don't have a place where I can serve it - believe it or not. Is there somewhere on the jquery site plugins can be hosted? If not, would someone be willing to host it for me? It's a pretty simple plugin. Only 8k. I can create an example usage with Lasso or php.

[jQuery] Re: I saw it somewhere...

2007-05-03 Thread Shelane Enos
Ahaahhaah! That was the very thing I was thinking of. Thank you very much. On 5/3/07 7:08 PM, "Scott Sauyet" <[EMAIL PROTECTED]> wrote: > > Shelane Enos wrote: >> For the last hour I have be scouring through jQuery tutorial and plugins >> pages trying to f

[jQuery] Re: jQuery Examples pack

2007-05-03 Thread Shelane Enos
I have updated my examples pack. The new page is here: http://education.llnl.gov/jQuery/ When I get the chance, I'm going to look through Kevin's great examples and see what I can add. Thanks, Kevin! [Shelane] On 5/3/07 7:38 AM, "Kevin Scholl" <[EMAIL PROTECTED]> wrote: > > @Jack, > > Tha

[jQuery] Re: I saw it somewhere...

2007-05-03 Thread Shelane Enos
uld just do a simple label, but On 5/3/07 2:55 PM, "Andy Matthews" <[EMAIL PROTECTED]> wrote: > > It's called Autocomplete. > > -Original Message- > From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of Shelane

[jQuery] I saw it somewhere...

2007-05-03 Thread Shelane Enos
For the last hour I have be scouring through jQuery tutorial and plugins pages trying to find something that I thought I saw. I did a search in the list archive to no avail. I'm looking for an example I saw of a form with input elements with "suggestions" of what should be placed inside. This w

[jQuery] Re: ThickBox 3

2007-05-03 Thread Shelane Enos
mlich" <[EMAIL PROTECTED]> wrote: > Here's the announcement > > http://codylindley.com/Webdev/321/thickbox-3 > > On 5/3/07, Shelane Enos <[EMAIL PROTECTED]> wrote: >> >> Cody Lindley updated his ThickBox to version 3 yesterday, but I saw no >>

[jQuery] ThickBox 3

2007-05-03 Thread Shelane Enos
Cody Lindley updated his ThickBox to version 3 yesterday, but I saw no announcement :-( The only thing I didn't see that I was expecting - making the plugin safe for use with other libraries. Of course, I'm hoping Jörn will be done with his autocomplete plugin soon and I can be rid of scriptacul

[jQuery] Re: Autocomplete plugin

2007-05-03 Thread Shelane Enos
I downloaded the latest trunk, but I got no output. The server was still returning results - autocomplete just didn't display them. I have reverted back whatever the last version was that I had for now. On 5/3/07 9:24 AM, "Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > > Jeff Fleitz schrieb: >

[jQuery] Re: Release: autocomplete 1.0 alpha

2007-04-30 Thread Shelane Enos
Yes, I had a malformed style :-( I fixed it. I should have checked with firebug. That's for the extra pair of eyes. On 4/30/07 4:11 PM, "Dan G. Switzer, II" <[EMAIL PROTECTED]> wrote: > > Shelane, > >> That's why I did this: >> .ac_loading { >>background: ('/resources/images/indicator.

[jQuery] Re: Release: autocomplete 1.0 alpha

2007-04-30 Thread Shelane Enos
That's why I did this: .ac_loading { background: ('/resources/images/indicator.gif') right center no-repeat; } On 4/30/07 3:42 PM, "Dan G. Switzer, II" <[EMAIL PROTECTED]> wrote: > > Shelane, > >> I don't notice my little indicator when it's doing the lookup. The file >> that I have in my

[jQuery] Re: Release: autocomplete 1.0 alpha

2007-04-30 Thread Shelane Enos
Ok, I tried the width thing by initially putting "300px" and nothing happened. Then I entered 300 and it worked fine. Can you place in the documentation the expected value type (an integer value). Or maybe allow people to set measurement types if you detect it's not an integer. I don't notice

[jQuery] Re: Release: autocomplete 1.0 alpha

2007-04-30 Thread Shelane Enos
Forgot to add my example link: http://education.llnl.gov/jQuery/ajax.html Click auto complete (unknown if this is working at all in IE right now). Definitely in FF. Your plugin is the second example. On 4/30/07 2:35 PM, "Shelane Enos" <[EMAIL PROTECTED]> wrote: > > Al

[jQuery] Re: Release: autocomplete 1.0 alpha

2007-04-30 Thread Shelane Enos
Also, a few other issues. If the default caching is set at 10 and matcheSubset default is true, why is it making a second call to the server when I add a new letter. First input: cap Additional letter: i Then a new query goes out to the server: http://education.llnl.gov/jQuery/pages

[jQuery] Re: jQuery Examples pack

2007-04-27 Thread Shelane Enos
I could. However, that would not solve another page problem I have outside of this example where that really isn't a a possibility due to a complexly structured web app. On 4/27/07 8:59 AM, "Dan G. Switzer, II" <[EMAIL PROTECTED]> wrote: > > Shelane, > >> So far I only have one example compl

[jQuery] Workarounds to IE eventListener issue

2007-04-26 Thread Shelane Enos
Does anyone have workarounds to the IE eventListener issue? I have several pages with jQuery code I keep local on the "page" that it's needed on. However, if that page is loaded via AJAX, IE simply doesn't execute it. I can't even get an alert('hello') to work on the loaded page. I feel a bit d

[jQuery] Getting href value

2007-04-26 Thread Shelane Enos
I have this: Index I was attempting to read the href of the anchor tag like this: var initlink = ('a', 'div.nav_one_selected').attr("href"); I also tried var initlink = ('div.nav_one_selected/a').attr("href"); I get an error like: ('a', 'div.nav_one_selected').attr is not a function I'm not s

[jQuery] Re: Finding id of "this"

2007-04-24 Thread Shelane Enos
Wouldn’t that apply the click to the newsitem div and the p.newsheader and not just the p.newsheader inside each div.newsitem ? I was thinking scope of “within” this (whatever I say this is) context. If there are multiple items that fix the scope, will it be applied for each of those items. On

[jQuery] Making plug-ins safe for other libraries

2007-04-24 Thread Shelane Enos
I would like to use the jtip plug-in by Cody Lindley and modified by Jack Born: http://15daysofjquery.com/examples/jqueryTooltips/js/jtip2.js but it appears that it's not using the "safe" method. What do I need to modify in the file so that it will work with other libraries? Thanks.

[jQuery] Re: Taconite question...

2007-04-23 Thread Shelane Enos
OK, so as a workaround for IE, I assigned the click event to the img. My lasso code looks something like this: [if:client_browser >> 'MSIE'] $j('#mystatusimg').click(function(){ setStatus('mystatus', 'statusID', 'update status to this value'); }); [else] [/if]

[jQuery] Re: Taconite question...

2007-04-20 Thread Shelane Enos
Ahh. I'll have to wait until Monday to test firebug lite. It's not working in the crossover version of IE and I don't have access to a PC at the moment. Thanks for the link though. On 4/20/07 7:02 PM, "Daemach" <[EMAIL PROTECTED]> wrote: > > http://www.getfirebug.com/lite.html helps a lot. >

[jQuery] Re: find.click vs bind("click")

2007-04-20 Thread Shelane Enos
vated if #edit exists and is clicked. > > but, in version 2, it is simple: .click() will be called on each member of the > array returned by j("#edit") which may be empty which is no biggy, like... > > for (var i=0; i < 0; i++) > { > // never will happen; &

[jQuery] Re: find.click vs bind("click")

2007-04-20 Thread Shelane Enos
t;href"); $j('#jobinfodisplay').load(linkval); return false; }); }; On 4/20/07 1:00 PM, "Ariel Jakobovits" <[EMAIL PROTECTED]> wrote: > > no it should not throw an error. > > j("#edit") will re

[jQuery] Finding id of "this"

2007-04-20 Thread Shelane Enos
I apologize if this solution is posted, but I searched and trying to get through hundreds of results is a bit painful. So I have these titles: Create Reminder, Create Hold Status, Change State. I want to bind a click event to all of them which will toggle the show/hide attribute of a correspondin

[jQuery] Re: find.click vs bind("click")

2007-04-20 Thread Shelane Enos
) in the jquery.js file that is worth setting a > breakpoint at and see if the script stops there. > > > - Original Message > From: Shelane Enos <[EMAIL PROTECTED]> > To: jquery-en@googlegroups.com > Sent: Tuesday, April 17, 2007 11:26:16 AM > Subject: [jQuery] Re: find.click

[jQuery] Re: find.click vs bind("click")

2007-04-17 Thread Shelane Enos
#edit').attr("href"); $j('#jobinfo').load(linkval); return false; } The "link" I'm trying to load is on a page like this: On 4/17/07 11:04 AM, "John Resig" <[EMAIL PROTECTED]> wrote: > > Do you have an example with a full

[jQuery] Re: find.click vs bind("click")

2007-04-17 Thread Shelane Enos
it in the onclick (onclick=loadEdit(); return false;) then the page is loaded properly. Otherwise the function (even with the return false in the function) is allowing link to be followed anyway. On 4/17/07 10:22 AM, "Shelane Enos" <[EMAIL PROTECTED]> wrote: > > So I

[jQuery] Re: find.click vs bind("click")

2007-04-17 Thread Shelane Enos
ent.. > > there is no difference between .bind('click') and .click(), .click is > just an alias for .bind('click').. and if i'm not mistaken, .click was > taken out of the core since 1.1 (i may be wrong, i know some aliases > were removed, but not

[jQuery] find.click vs bind("click")

2007-04-17 Thread Shelane Enos
What is the difference, advantage/disadvantage of these different methods: bindEdit = function(){ $j('#edit').bind("click", function(){ var linkval = $(this).attr("href"); $j('#jobinfo').load(linkval, function(){ bindEdit(); }); retu

[jQuery] Re: Autocomplete plugin

2007-04-08 Thread Shelane Enos
Thanks :-) On 4/8/07 8:44 AM, "Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > > Shelane Enos schrieb: >> Ability to show a subset of returned data (within each "record") and hide >> the rest. On select, pick the data apart to put in different hidden

[jQuery] Re: Autocomplete plugin

2007-04-08 Thread Shelane Enos
Ability to show a subset of returned data (within each "record") and hide the rest. On select, pick the data apart to put in different hidden fields. So if each record of my data contains a name, address, city, state, zip, phone number. I want to show in the autocomplete results only the name a

[jQuery] Test for a function being defined

2007-04-03 Thread Shelane Enos
Is there a test to know if a function has been defined or declared? function modify(){ ...my code } if(function('modify')) or something like that?

[jQuery] Auto-populating Select Boxes using jQuery & AJAX

2007-04-03 Thread Shelane Enos
Remy wrote this: http://remysharp.com/2007/01/20/auto-populating-select-boxes-using-jquery-aj ax/ And I used the example to a T. what I didn't notice is that in the example and now my code, the last option is always selected. I even change this line: var options = ''; To var options =