[jQuery] Re: autocomplete questions

2008-09-10 Thread Shelane Enos
am, Shelane Enos [EMAIL PROTECTED] wrote: 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

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

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

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

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

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

[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

[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

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

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

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

[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] 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
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 recently. On 5/24/07 9:06 AM, emi polak [EMAIL PROTECTED] wrote: Thank you all guys for your

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

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

[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=eventmethod=invitationvolunteer='; url

[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: 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 image I need to load

[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 book, and

[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: Plugin authoring

2007-05-08 Thread Shelane Enos
to bind a change event to the source select element and retrieve JSON results from your server, placing the results in the target select element. How does one go about having this listed on the plugins page? On May 8, 10:09 am, Shelane Enos [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote

[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

[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

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

2007-05-03 Thread Shelane Enos
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 Enos Sent: Thursday, May 03, 2007 4:32 PM To: jquery-en@googlegroups.com Subject

[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, Thanks for

[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 find something that I thought I saw. I did

[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: Also, a few other issues

[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.gif') right

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

[jQuery] Getting href value

2007-04-26 Thread Shelane Enos
I have this: div class=nav_one_selecteda href=/jQuery/pages/index.htmlIndex/a/div 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:

[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

[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] Re: find.click vs bind(click)

2007-04-20 Thread Shelane Enos
From: Shelane Enos [EMAIL PROTECTED] To: jquery-en@googlegroups.com Sent: Tuesday, April 17, 2007 11:26:16 AM Subject: [jQuery] Re: find.click vs bind(click) Unfortunately this is an internal application. The jQuery code on the page is just this (I have the one function commented out b/c

[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

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

2007-04-20 Thread Shelane Enos
; }); }; On 4/20/07 1:00 PM, Ariel Jakobovits [EMAIL PROTECTED] wrote: no it should not throw an error. j(#edit) will return an empty array is all and the bind will not be called. - Original Message From: Shelane Enos [EMAIL PROTECTED] To: jquery-en

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

2007-04-20 Thread Shelane Enos
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; } - Original Message From: Shelane Enos [EMAIL PROTECTED] To: jquery-en@googlegroups.com Sent: Friday, April 20, 2007 1:07:37 PM

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

[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(); }); return

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

2007-04-17 Thread Shelane Enos
was taken out of the core since 1.1 (i may be wrong, i know some aliases were removed, but not sure which - so i just use .bind for everything :)).. dennis. Shelane Enos wrote: What is the difference, advantage/disadvantage of these different methods: bindEdit = function(){ $j('#edit

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

2007-04-17 Thread Shelane Enos
(); 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'm trying this: $j(function(){ bindEdit = function(){ $j