[jQuery] autocomplete and scrolling with IE7

2008-09-24 Thread Shelane
If you click on the scroll bar and try to click anywhere else on the page without selecting an item, the results never go away in IE7. It works fine in other browsers. Example: http://education.llnl.gov/jquery/ Click the Auto Complete on the left and type Mod into field. Is this a known bug?

[jQuery] Re: autocomplete questions

2008-09-10 Thread Shelane Enos
 am, Shelane [EMAIL PROTECTED] wrote: To no avail, I tried adding this line: $('#topic1').trigger('keydown'); I also tried it as: $('#topic1').trigger('keypress'); to make this function like this: $('#topic1').focus(function(){         $('#topic1').search();         $('#topic1

[jQuery] Re: autocomplete questions

2008-09-09 Thread Shelane
a clue how that function worked. You need to add an on-focus event to the field that then bubbles a key- up event that will trigger the autocomplete for the user. http://docs.jquery.com/Release:jQuery_1.2/Events On Sep 8, 11:07 am, Shelane Enos [EMAIL PROTECTED] wrote: This worked. Thanks

[jQuery] autocomplete questions

2008-09-08 Thread Shelane
Just a couple of things that I would like to know if it's possible: Can you submit additional parameters based on the value of another input field? Can you return all autocomplete results on the focus of the field? More info and a test page are available here: http://education.llnl.gov/test/

[jQuery] IE 6 error message

2008-09-08 Thread Shelane
I'm getting an error message on IE 6 for my selectCombo plugin. However, the message is so not helpful. Does anyone else have experience with this error message: Could not set the selected property. Unspecified error here is the code in question:

[jQuery] Re: autocomplete questions

2008-09-08 Thread Shelane Enos
fires on focus instead of just keyup. Alternatively you could possibly kludge it by adding an on focus handler that just creates a keyup event. On Sep 8, 9:51 am, Shelane [EMAIL PROTECTED] wrote: Just a couple of things that I would like to know if it's possible: Can you submit additional

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

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

[jQuery] Re: IE 6 error message

2008-09-08 Thread Shelane
? In searching the list, it seemed lots of people have the problem, but no solutions were posted. On Sep 8, 10:07 am, Shelane [EMAIL PROTECTED] wrote: I'm getting an error message on IE 6 for my selectCombo plugin. However, the message is so not helpful. Does anyone else have experience

[jQuery] Re: AutoComplete

2008-09-03 Thread Shelane
Your data needs to be returned with a \n between each item returned. If you want to return more information about First and it's all related to that record, you separate that data with a pipe | [First\nSecond\nThird] or [First|Name\nSecond|Name] On Jul 21, 5:02 pm, shapper [EMAIL PROTECTED]

[jQuery] autocomplete onfocus and other dynamic input

2008-09-03 Thread Shelane
Additional Dynamic Input: I have two input fields. The user types in something in the first field, then needs to type something in the second field. That second field is an autocomplete and needs to send two pieces of info to the server - the current input and the value of the first field.

[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, '#' +

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

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

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

2008-07-03 Thread Shelane
Cute answer Mike. I use method as a hidden form name all the time and my code is already wrapped with that code everywhere. I'm terrible with coming up with good names for things, but I have to have some name that makes sense. What do you use? I have two key inputs that tell my processing

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

2008-06-05 Thread Shelane Enos
/08 9:13 PM, Karl Swedberg [EMAIL PROTECTED] wrote: Hi Shelane, Have you considered using a simple confirm message? For example: $('a').click(function() { var c = confirm('are you sure?'); if (!c) return false; }); --Karl Karl Swedberg www.englishrules.com

[jQuery] pausing a link and resuming its normal behavior

2008-06-04 Thread Shelane
If I click a link, I want to trigger a modal, and based on a response from the modal, I either want to cancel the link click or make the link be followed. Has anyone done this sort of thing or know how to accomplish it?

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

2008-05-19 Thread Shelane Enos
side if you can control the order that your portlets are loaded -- you'd just have to make sure a utility portlet gets loaded as well. Far from elegant, but it might be your best bet. HTH, Jason On May 18, 11:17 pm, Shelane [EMAIL PROTECTED] wrote: Hey Jason, I thought it made

[jQuery] OT: Firefox 3 RC1 for Mac

2008-05-19 Thread Shelane
Is there a way to install Firefox 3 RC1 without affecting FF2 on a Mac. The release notes have this message: Please note that installing Firefox 3 will overwrite your existing installation of Firefox on Mac OS X and Linux. I'm guessing that's if you simply install it into the Applications

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

2008-05-18 Thread Shelane
if you have this in this order, the plugin call won't work. it will give an error that the plugin function is not defined script type=text/javascript src=/scripts/jquery.pack.js/script script type=text/javascript src=/scripts/jquery.corner.js/ script $(function(){

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

2008-05-18 Thread Shelane
of additional plugins from within individual portlets. That's if you're looking for a pure Javascript solution. You could do something similar on the server side to prevent scripts from being loaded multiple times. - jason On May 18, 9:33 pm, Shelane [EMAIL PROTECTED] wrote: if you have

[jQuery] Re: jQuery in the wild

2008-04-20 Thread Shelane
I just noticed the MLB thing. I was checking out the Giants and Cards today on gameday and cheked firebug and say jQuery. That's awesome!!! On Mar 23, 8:39 pm, Benjamin Sterling [EMAIL PROTECTED] wrote: Looks like MLB.com and in turnhttp://phillies.comare now using jQuery 1.2.1, looks like

[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] ready and jquery 1.2.3

2008-04-02 Thread Shelane
I'm seeing more and more evidence that the ready function isn't really working properly with jquery 1.2.3 and FF 2. $(function(){ $('#mydiv').hide(); }); things like above, when the page loads sometimes i see the div, then it disappears. Is there just a problem with the shortcut? Is it a

[jQuery] Re: Modals - What's everyone using?

2008-03-31 Thread Shelane
; opacity: 0.5 } - Richard On Sun, Mar 30, 2008 at 2:12 PM, Shelane [EMAIL PROTECTED] wrote: Scott, can you expand on this? Without setting any options, it's not good for forms, but there are options to make it so? What setting for the overlay option or change to the stylesheet should be made

[jQuery] Re: Modals - What's everyone using?

2008-03-30 Thread Shelane
I use jqModal. I do plan to switch to UI Dialog when it's complete because jqModal lacks in width flexibility. On Mar 29, 2:56 pm, Rey Bango [EMAIL PROTECTED] wrote: I want to build a modal window with a form in it but don't want to use the blacked out effect similar to many lightbox

[jQuery] Re: Modals - What's everyone using?

2008-03-30 Thread Shelane
Scott, can you expand on this? Without setting any options, it's not good for forms, but there are options to make it so? What setting for the overlay option or change to the stylesheet should be made? On Mar 30, 5:51 am, Scott González [EMAIL PROTECTED] wrote: The UI Dialog plugin defaults

[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 workaround. What i

[jQuery] Re: Caching issues jqModal??

2008-03-26 Thread Shelane
I posted a workaround to this problem on this thread: http://groups.google.com/group/jquery-en/browse_thread/thread/40137ddd2b5cfdcc/c70dadc91b0f941d?lnk=gstq=shelane+jqmodal#c70dadc91b0f941d (very last post on it) On Mar 26, 11:40 am, Kenny1980 [EMAIL PROTECTED] wrote: Hi, I got some

[jQuery] every nth element - photo grid arranging

2008-03-07 Thread Shelane
I basically want to create a grid of items from a list. For example I want a new row after every 4th element. So I will have all of these elements doing a float left, but I need to do a clear:all after each 4th element. The end goal is to be able to do a sortable or drag and drop to reorder

[jQuery] Re: every nth element - photo grid arranging

2008-03-07 Thread Shelane
I did this: $('ul li:nth-child(5n)').css(clear,both); It's still having a strange output: http://education.llnl.gov/sme/photos.lasso On Mar 7, 1:33 pm, Shelane [EMAIL PROTECTED] wrote: I basically want to create a grid of items from a list. For example I want a new row after every 4th

[jQuery] determining if table contains rows

2008-02-17 Thread Shelane
After deleting a row, I want to test if there are any more rows with the tbody. If not, I want to hide the thead. This logic test returned false: $('tbody', '#documents').html() == ''

[jQuery] Re: determining if table contains rows

2008-02-17 Thread Shelane Enos
tr elements inside the tbody, use the length property: if ($('tbody tr', '#documents').length) { $('thead').hide(); } --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Feb 17, 2008, at 1:02 PM, Shelane wrote: After deleting a row, I want

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

2008-02-16 Thread Shelane Enos
about that tag most of the time. On 2/15/08 3:09 PM, Steve Davis [EMAIL PROTECTED] wrote: i would make the first row a th then have it do a $(th).after(add your TR here); but im a total newbie to javascript and jquery On Feb 15, 2:48 pm, Shelane [EMAIL PROTECTED] wrote: I would like

[jQuery] Re: ajax form plugin question

2008-02-15 Thread Shelane Enos
step. So, ajaxForm is working just fine ­ beautifully in fact. On 2/15/08 11:45 AM, Mike Alsup [EMAIL PROTECTED] wrote: Shelane, Since it is not possible to upload files via ajax the form plugin manages the process with a hidden iframe technique. So you won't see the get/post trace

[jQuery] ajax form plugin question

2008-02-15 Thread Shelane
When a form is submitted - specifically with a file upload - with the ajax form plugin, firebug doesn't show a submission, nor any return. This is making it difficult to debug, hince the question. I know that my files are being uploaded, but the success function doesn't seem to be running:

[jQuery] Re: ajax form plugin question

2008-02-15 Thread Shelane Enos
to) the ajaxForm method. ajaxForm just preps the form AFAIK. -- Josh - Original Message - From: Shelane [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Friday, February 15, 2008 11:17 AM Subject: [jQuery] ajax form plugin question When a form is submitted

[jQuery] Re: autocomplete bug when focus called

2007-12-10 Thread Shelane Enos
://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 name of a person is typed in (like Miller or Johnson

[jQuery] Re: autocomplete bug when focus called

2007-12-06 Thread Shelane Enos
: 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 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

[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] autocomplete bug when focus called

2007-12-05 Thread Shelane
if I have a focus called in the code just before applying the autocomplete, then when the autocomplete runs, the data never shows. firebug shows that the call is being made, it just never displays. i take the focus call out and it works fine. this is with the latest from SVN that i just

[jQuery] Re: autocomplete bug when focus called

2007-12-05 Thread Shelane Enos
type mod and let it sit there. Thanks for looking. On 12/5/07 9:42 AM, Jörn Zaefferer [EMAIL PROTECTED] wrote: Shelane schrieb: if I have a focus called in the code just before applying the autocomplete, then when the autocomplete runs, the data never shows. firebug shows that the call

[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] retrieve text from selected option of select

2007-11-28 Thread Shelane
getting the value is easy. how do I get the text (what displays to the user) of the selected option?

[jQuery] Re: autocomplete new dependency

2007-11-27 Thread Shelane Enos
dimensions? What is the complete dependency list? On 11/26/07 4:26 PM, Jörn Zaefferer [EMAIL PROTECTED] wrote: Shelane schrieb: I downloaded the latest from the repository today and found I was get an error of list.scrollTop not a function. I saw something about a dependency

[jQuery] autocomplete new dependency

2007-11-26 Thread Shelane
I downloaded the latest from the repository today and found I was get an error of list.scrollTop not a function. I saw something about a dependency on the dimensions plugin. So I added that to the scripts loaded before the autocomplete. I was then getting a strange issue on the display of the

[jQuery] Re: autocomplete new dependency

2007-11-26 Thread Shelane Enos
on it now. Thanks! On 11/26/07 4:26 PM, Jörn Zaefferer [EMAIL PROTECTED] wrote: Shelane schrieb: I downloaded the latest from the repository today and found I was get an error of list.scrollTop not a function. I saw something about a dependency on the dimensions plugin. So I added

[jQuery] Re: autocomplete new dependency

2007-11-26 Thread Shelane Enos
Kilp [sk-software] [EMAIL PROTECTED] wrote: when i look at http://jqueryjs.googlecode.com/svn/trunk/plugins/autocomplete with TortoiseSVN ist shows Revision 3917 not 2384. Is that the current version or am i getting something wrong? Best regards, Stefan Kilp Shelane schrieb: I

[jQuery] Re: clueTip 'rounded' theme issue with showTitle: false

2007-11-15 Thread Shelane
Do you have a demo with the arrow and the shadowed theme (first set)? I noticed that each version is getting smaller in k size. What's your secret? On Nov 15, 5:48 am, Karl Swedberg [EMAIL PROTECTED] wrote: Hi Geoff, Thanks for checking out the plugin! Example #1 on the Rounded Corners

[jQuery] Re: jqModal ajax question

2007-10-21 Thread Shelane
I brought this up back in May at this post: http://groups.google.com/group/jquery-en/browse_thread/thread/40137ddd2b5cfdcc/ Of which I end it with my workaround to the problem. However, I would love it if jqModal were updated to handle this without my workaround. On Oct 21, 7:26 am, Brice

[jQuery] Re: $.load(url) and IE fails to find CSS/JS

2007-08-29 Thread Shelane
Actually, this has been discussed quite a bit. http://groups.google.com/group/jquery-en/browse_thread/thread/6722e380538892b9/ I did manage to get scripts working properly in IE, with some trick that John Resig told me to try. Look at the code I have in my examples pack:

[jQuery] removeClass from *any* element

2007-08-28 Thread Shelane
I apply a class called RedText to items I need to make stand out to the user. I want to be able to globally remove the class from any and all elements on my page within a specific div tag. Is there a wildcard selector or some other way to do this: $(wildcard, '#mydiv').removeClass('RedText');

[jQuery] Re: jQuery 1.1.4: Faster, More Tests, Ready for 1.2

2007-08-27 Thread Shelane
The front page of the jquery site still shows 1.1.3.1. When might this be fixed to reflect the new version and new links? On Aug 24, 1:46 am, John Resig [EMAIL PROTECTED] wrote: Hi Everyone - jQuery 1.1.4 has just been released! The full details of this release can be found on the jQuery

[jQuery] Re: jQuery 1.1.4: Faster, More Tests, Ready for 1.2

2007-08-27 Thread Shelane
Yep, I just did a force reload and it's showing properly. My bad. On Aug 27, 9:20 am, Rey Bango [EMAIL PROTECTED] wrote: Shelane, I just verified and I see v1.1.4 listed there. Please refresh your cache. Rey Shelane wrote: The front page of the jquery site still shows 1.1.3.1. When

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

2007-08-23 Thread Shelane Enos
:-) Thanks much, Shelane On 8/23/07 9:49 PM, Karl Swedberg [EMAIL PROTECTED] wrote: On Aug 22, 2007, at 11:01 PM, Mitchell Waite wrote: Now I am sure j Tip is faster, but faster might not be the right word. Its like this. The very first time I hover over your cluetip I can actually see the divs

[jQuery] removeClass error

2007-07-31 Thread Shelane
Error: b.className has no properties Source File: http://mymachine/javascripts/jQuery/jquery.pack.js Line: 11 this occurs when I do this: var doc = $(this); function checkIt(){ $(doc).removeClass('RedText'); } it also occurs when I do this: function checkIt(){ $(this).removeClass('RedText'); }

[jQuery] named function vs anonymous functions

2007-07-27 Thread Shelane
I currently have: $(this).change(function(){ //my function code here });//end change fn I decided to move the function outside this block since I might want to use it at another time besides a change event so my function is now myfunction = function(){ //my function code here } so

[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

[jQuery] running a callback function even when no results returned

2007-07-27 Thread Shelane
it seems that if no results are returned from a .$.getJSON, nothing in the function(results) callback function runs. I just tested with a console.log('hello world') and got nothing. if however valid JSON results are returned, everything works fine. is this what it's supposed to do? if so, how

[jQuery] Re: query against response text from $.get() not working...

2007-07-27 Thread Shelane
I seen this come up many times. What I know has worked in the past as context included selectors as well (without the $) $(#invalid_email_address, '#mymainarea').html(); so if 'data' were a variable of same said type or allowable types, wouldn't that still work? On Jul 27, 8:54 am, Dan G.

[jQuery] jquery 1.1.3.1 problem with className

2007-07-27 Thread Shelane
getting this error: Error: b.className has no properties Source File: http://eddev.llnl.gov/resources/javascripts/jQuery/jquery.pack.js Line: 11 I know that I'm doing removeClass and addClass like: $(this).removeClass('RedText'); $([EMAIL PROTECTED]'title']).addClass('RedText'); this could be

[jQuery] Re: Autocomplete - form elements in IE

2007-07-17 Thread Shelane
Apparently, I didn't have the latest version of bgiframe. BTW, the documentation still lists the dimensions plugin as a required plugin. This was changed, correct? On Jul 16, 3:20 pm, Shelane Enos [EMAIL PROTECTED] wrote: For the lastest version of the autocomplete plugin (http

[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: [ANNOUNCE]: clueTip Plugin Beta

2007-07-13 Thread Shelane
Looking great, Karl! The examples page #6 shows an error in the firebug console: 503 Service Temporarily Unavailable So that you show that you have completed your desired features. I just want to ask if my feature request got canned: to cache results from ajax results so that the same clue

[jQuery] Re: : clueTip Plugin Beta

2007-07-13 Thread Shelane
Nevermind on the cache thing. I see it in there. Silly me. I saw the other thread from Web Specialist and see that you're also working on some other things I'm interested in seeing. Hurray!!! On Jul 13, 2:25 pm, Shelane [EMAIL PROTECTED] wrote: Looking great, Karl! The examples page #6

[jQuery] Re: jqModal caching ajax requests

2007-07-11 Thread Shelane Enos
Yes, it is a jqmodal issue. On 7/11/07 2:03 AM, james_027 [EMAIL PROTECTED] wrote: Hi everyone, I am glad to be able to stumble upon this discussion, I am also using jqModal recently. @shelane you mean this caching issue is because of jqModal and not on jQuery? Thanks james

[jQuery] Re: how can I prohibit from users pasting content into text boxes?

2007-07-05 Thread Shelane
So how does your checkbox function work? When a box is checked the value gets put in a text box? What is this purpose? You can display the value instead in a div. The checked values will get passed when a form is submitted so it's not necessary to also have them in a textbox if that textbox is

[jQuery] login via ajax

2007-07-05 Thread Shelane
I'm sure someone out there has done a login via ajax. What's the securest way to pass a username and password into the server. Currently, I have the case where a user desires to register for an event. If the user is not logged in, he/she is presented with a login form that has a Register for

[jQuery] Re: Basic Example not working

2007-07-04 Thread Shelane
You tried wrapping it in a ready function? script type=text/javascript $(function(){ $(a).click(function(){ alert(ahh); return false; }); }); /script On Jul 4, 12:10 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I have the following code in my file, the src for the jquery file is

[jQuery] Digg story for jQuery 1.1.3

2007-07-02 Thread Shelane
this digg link has gotten 1392 diggs as of this writing: http://digg.com/programming/jQuery_1_1_3_800_Faster_still_20KB the one on the blog itself only lists 24 at http://digg.com/tech_news/jQuery_1_1_3 is it time to change the digg link on the blog to leverage the most dugg ??

[jQuery] Re: Jquery presentation today

2007-07-02 Thread Shelane
, a whole lot more people at our whole lab may adopt it too! On Jun 11, 2:43 pm, Chris W. Parker [EMAIL PROTECTED] wrote: On Monday, June 11, 2007 11:38 AM Shelane Enos said: I'm giving a presentation today on jquery to our new development group. (my boss is now in charge of this group

[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

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

[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, Shelane Enos [EMAIL PROTECTED

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

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

[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 that I could show it.) Just extract a small bit

[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

[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
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 a couple of different options related to caching: matchSubset, cacheLength. Do I need to set cacheLength

[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} Here is another oddity: If I type 'cal

[jQuery] Re: ANNOUNCE: jqUploader upgraded to 1.0.2

2007-06-28 Thread Shelane
This works on Mac Firefox 2. It fails in Safari 2. In Safari 2, it allows you to select an image. Once you click Upload, it gives this message: and don't you come back ;) All the while it shows the Chose a file to upload: (Chose File button) no file selected. On Jun 28, 3:55 pm, Alexandre

[jQuery] Re: What's your setup?

2007-06-23 Thread Shelane
What OS? OS X 10.4.10 (Windows XP for testing only - no dev) What IDE or editor? Dreamweaver CS3, BBEdit What backend language, if any (php, asp, cf, ruby, java, etc)? Lasso What framework, if any (cake, symfony, rails, struts, etc)? None Any other significant components (persistence

[jQuery] Re: NEWS: iPhone Browser Capabilites Released

2007-06-20 Thread Shelane
Is there any place that actually states what this new make a call protocol/link structure is? On Jun 20, 11:56 am, Andy Matthews [EMAIL PROTECTED] wrote: TEN MEG maximum page size? That's freaking HUGE. No wonder Apple's bumping up the page sizes on their site. They probably used the

[jQuery] Re: Safari for Windows Support Questions

2007-06-13 Thread Shelane
Remember that it's still a beta. The final version won't be out for a while yet. On Jun 13, 2:12 pm, Erik Beeson [EMAIL PROTECTED] wrote: Is anyone supporting Safari for Windows on their projects? Not yet. Will jQuery include Safari for Windows in testing? Eventually I assume it will.

[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

[jQuery] Re: jTip and ToolTip featured on smashing magazine

2007-06-12 Thread Shelane
I guess that's one more thing to prompt it's finish :-) It's looking good. On Jun 12, 4:14 pm, Karl Swedberg [EMAIL PROTECTED] wrote: Hey, that's cool! They feature clueTip, too, and I haven't even blogged about it yet. Not sure how they found out about it, but I feel kind of pathetic to

[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: Macrumors running live udpates of WWDC

2007-06-11 Thread Shelane Enos
That’s a feature they’ve previously announced that I’m looking forward to. On 6/11/07 10:52 AM, ?ⓐⓚⓔ [EMAIL PROTECTED] wrote: 10:49 amusing safari to make widgets from web pages Woo hoo! On 6/11/07, ?ⓐⓚⓔ [EMAIL PROTECTED] wrote: thanks Shelane! I've been tuned in since 10 am

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

[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Shelane Enos
. --Erik On 6/11/07, Chris W. Parker [EMAIL PROTECTED] wrote: On Monday, June 11, 2007 3:58 PM Shelane Enos said: Works fine on my XP (the one that sits in the corner of my office), though I haven't used it extensively. Oh *that* computer? The one in the corner of your office

[jQuery] script killing IE

2007-06-04 Thread Shelane
I have this script that is absolutely killing IE, but works fine in FF. I wish I could post the working model, but it's behind our firewall. Here's the script: $(function(){ bindResults = function(){ $('#sbmsdata_1 a').click(function(){

[jQuery] Re: script killing IE

2007-06-04 Thread Shelane
So I have determined that it's dying when I unbind and bind a new click function to that item. Where it starts: $(this).unbind();$ (this).click(function(){... When I commented this out, it works (of course it doesn't have that second click function). On Jun 4, 10:28 am, Shelane [EMAIL PROTECTED

[jQuery] Re: script killing IE

2007-06-04 Thread Shelane Enos
; }); } loadSubjects('#sbmssubjects'); }); On 6/4/07 12:43 PM, Benjamin Sterling [EMAIL PROTECTED] wrote: Shelane, First, you should be able to chain a few of your functions, ie: $(this).unbind().click(function()... Secondly, I may be misunderstanding the purpose of the .blur

[jQuery] Re: jqModal caching ajax requests

2007-05-24 Thread Shelane
Do you find this only happening in IE? There was a thread a few days ago about IE caching GET requests. The jqModal is using a GET ajax request. That thread mentions methods to cause IE to get the new data. However, that will still leave you with the jqModal wanting to load the originally

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

[jQuery] Re: IE Caching AJAX calls

2007-05-18 Thread Shelane Enos
Yep, Jason Huck did an awesome presentation at the Lasso Summit http://www.corefive.com/Lasso_and_jQuery/ 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 perfect!

[jQuery] Re: jqModal question -workaround

2007-05-17 Thread Shelane
variable to get 'stuck' in the modal call. If I knew what caused it to get stuck, maybe I could 'unstick' it. On May 16, 8:53 am, Shelane Enos [EMAIL PROTECTED] wrote: Ok, so I explained what I'm trying to do below, in part. I also have this function: statusChange = function(scope

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

  1   2   >