[jQuery] Re: Something that bugs me about the google groups messages...

2007-04-03 Thread Shelane
Hmmm. That method has always worked fine in Entourage on the Mac (it keeps the original message together with the replies when sorted by subject). On Apr 3, 6:35 pm, Alex Ezell [EMAIL PROTECTED] wrote: Scratch that. I see what you are saying. Sorry. It does throw an Re: before the list tag

[jQuery] Re: Ajax Experience SF

2007-04-03 Thread Shelane
I didn't find anything on the conference itself other than the date and where. Is there a place to get more info? On Apr 3, 10:05 am, John Resig [EMAIL PROTECTED] wrote: I'll probably be presenting. Probably on jQuery, maybe something else too. --John On 4/3/07, Glen Lipka [EMAIL

[jQuery] Re: Autocomplete Question

2007-04-07 Thread Shelane
I see examples but no actual documentation for this plug-in or the orignial from Dylan Verheul. I would love to get rid of my scriptaculous uses of autocomplete, but I have yet to figure out how to match what I do there with Dan's or Dylan's plug-in for jQuery. So my questions for these

[jQuery] Re: Autocomplete Question

2007-04-07 Thread Shelane
. Maybe I only want one of those items to show in the autocomplete box once selected, but I want to populate other hidden fields with the other pieces of information (like my example). On Apr 7, 12:43 pm, Shelane [EMAIL PROTECTED] wrote: I see examples but no actual documentation for this plug

[jQuery] Re: Autocomplete plugin

2007-04-08 Thread Shelane
See this post for my requests: http://groups.google.com/group/jquery-en/msg/737f3042da7c152c?hl=en; On Apr 8, 7:53 am, Jörn Zaefferer [EMAIL PROTECTED] wrote: Hi folks, especially Dan and Dylan, I'm in the process of evaluating jQuery's autocomplete plugins. Dan's port of Dylan's version

[jQuery] Re: Finding id of this

2007-04-20 Thread Shelane
'); $('#div_' + myid).toggle(); $(this).blur(); return false; }); }); On Apr 20, 10:21 am, Shelane Enos [EMAIL PROTECTED] wrote: I apologize if this solution is posted, but I searched and trying to get through hundreds of results is a bit painful

[jQuery] Re: Taconite question...

2007-04-20 Thread Shelane
I'm having a strange issue on IE (isn't it almost always the culprit of issues). I'm returning this: taconite replaceContent select=#mystatus a href=# onClick=setStatus('mystatus', 'statusID', 'update status to this value');img src=/images/icons/check.gif width=16 height=16 border=0 //a

[jQuery] Re: Finding id of this

2007-04-24 Thread Shelane
In terms of searching a scope I'm not quite sure if this is true: there are many divs with a class of newsitem. I want to bind a click event to all p.newsheaders within all the newsitems divs. So, this repeats for each story: div class=newsitem p class=newsheaderMy News Header/p div

[jQuery] Re: Finding id of this

2007-04-24 Thread Shelane
Sorry, hit the button and the message posted prematurely. Can I do this?: $(function(){ $('p.newsheader', '.newsitem').click(function(){ var myid = $(this).attr('id'); $(this).next().load('mynews.lasso?news=' + id); }); }); On Apr 24, 8:03 pm, Shelane [EMAIL PROTECTED

[jQuery] Re: Getting href value

2007-04-26 Thread Shelane
Yep, I forgot it. Thought I had it. Guess I needed extra eyes :-) Thanks for the indulgence. On Apr 26, 1:26 pm, Karl Swedberg [EMAIL PROTECTED] wrote: Hi Shelane, Looks like you just forgot the $ or jQuery before the opening parenthesis. This should work: var initlink

[jQuery] Re: Workarounds to IE eventListener issue

2007-04-26 Thread Shelane
to have executed on doc ready when the new page is loaded. On Apr 26, 1:43 pm, Shelane Enos [EMAIL PROTECTED] wrote: 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

[jQuery] jQuery Examples pack

2007-04-27 Thread Shelane
I was only introduced to jQuery at a Lasso Summit the beginning of March and I have already been able to do so much with it. I have been able to solve some long standing problems I had with user interface elements requiring greater javascript and ajax manipulation that my skills had previously

[jQuery] Re: jQuery Examples pack

2007-04-27 Thread Shelane
(ajaxSettings,{url: this.url,success:this.modifyContent}); jQuery.ajax(ajaxSettings); }, modifyContent: function (response,status) { container.html(response); jQuery('#mydiv',container).do - your - thang } }; - Original Message From: Shelane [EMAIL PROTECTED

[jQuery] Re: jQuery Examples pack

2007-04-27 Thread Shelane
. Please if you have some suggestions for demos, I'd love to hear it. On Apr 27, 8:31 am, Shelane [EMAIL PROTECTED] wrote: I was only introduced to jQuery at a Lasso Summit the beginning of March and I have already been able to do so much with it. I have been able to solve some long standing

[jQuery] Re: plugins page!!!!

2007-04-27 Thread Shelane
The new page is looking nice. A couple of comments - when you click one of the categories from the Home page, a horizontal scroll bar appears and the focus outline is extended out just past the original size of the fieldset element. Also, if you click into one of the categories, the Browse

[jQuery] Re: Estimated 1.1.3 release date?

2007-04-28 Thread Shelane
What might we expect in the next release? You mentioned a few things related to faster selectors, animations, etc. What bug fixes might we see? IE issues? Why is IE always the problem child? Oh yeah, M$. OK, off my soapbox now. On Apr 26, 7:21 pm, John Resig [EMAIL PROTECTED] wrote:

[jQuery] Re: Release: autocomplete 1.0 alpha

2007-04-30 Thread Shelane
Jörn, I believe I found a bug in the new autocompleter. Line 157 has: var $input = $(input).attr(autocomplete, off).addClass(options.inputClass); This throws a javascript error if jQuery.noConflict() has been called: $(input).attr is not a function changing it to var $input =

[jQuery] Re: jQuery Examples pack

2007-05-01 Thread Shelane
). Thanks to some input from John Resig, this *should* be working in IE now. Although sometimes I get weird, cryptic JS errors that I can't decipher. That may only be my particular PC. I use it as little as possible. http://education.llnl.gov/jQuery/ajax.html On Apr 27, 8:31 am, Shelane [EMAIL

[jQuery] Re: Force the FIRST option to be selected in a select box.

2007-05-02 Thread Shelane
$(option:first, select#host_organization).attr(selected,selected); that is what I used on a similar solution here: http://education.llnl.gov/jQuery/ajax.html (The Progressive Form example) On May 2, 11:45 am, Andy Matthews [EMAIL PROTECTED] wrote: Hrm... That didn't seem to work. For some

[jQuery] spam-free accessible forms

2007-05-03 Thread Shelane
Anyone using CAPTCHAs on their forms? Well stop it! Stop it, I say! A few months back I discovered that our plasma dictionary entries were being spammed. Fortunately all submissions to that extremely technical and scientific dictionary are screened. But it did mean our screener was being

[jQuery] Re: Evaulating script tags when .load-ing HTML

2007-05-04 Thread shelane
I also had this problem and pleaded for help in these threads: http://groups.google.com/group/jquery-en/t/6722e380538892b9 and http://groups.google.com/group/jquery-en/browse_thread/thread/7935f78c0cf61e4b eventually, I asked John for help. From John's email: Take into consideration that

[jQuery] Re: spam-free accessible forms

2007-05-04 Thread Shelane
Good point Dan. I've never actually used that one. The one I've used so far is the hidden by CSS field. On May 4, 7:40 am, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Today, someone on our list posted this link that has 7 different methods for protecting against spambots. These methods

[jQuery] Re: LOADING CONTENT IN A PRE-EXISTING DIV

2007-05-05 Thread Shelane
){ Effect.BlindUp('menu2'); } } See? that makes me load any content i link like this: a href=javascript:change('smallville/smallville.html', 'total');. Could anyone help me? Paulo On 5/4/07, Shelane [EMAIL PROTECTED] wrote: If you div doesn't have an id, give it one

[jQuery] Re: LOADING CONTENT IN A PRE-EXISTING DIV

2007-05-05 Thread Shelane
smallville, then click the link called a história. the last one should also be loaded in 'total' www.svplace.com/teste thanks Paulo On 5/5/07, Shelane [EMAIL PROTECTED] wrote: You're loading all these pages at once? Or, you're saying that clicking a specific menu item will load

[jQuery] Re: Plugin authoring

2007-05-08 Thread Shelane
on the plugins page? On May 8, 10:09 am, Shelane Enos [EMAIL PROTECTED] wrote: 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

[jQuery] [ANN] New plugin - selectCombo

2007-05-08 Thread Shelane
http://jqueryselectcombo.googlecode.com/files/jquery.selectCombo.js A jQuery plugin for populating data of a select item from results of another select item. A Select Combo is setting the values of a select element based on the user's choice of the source select element. As a jQuery plugin, it

[jQuery] Re: LOADING CONTENT IN A PRE-EXISTING DIV

2007-05-09 Thread Shelane
Sorry, I've been in my own little world. is the script that's running the content replacement? http://www.svplace.com/teste/load.js if so, I can't tell which function is executing for which things. What function does the binding on the page that's getting loaded into the div? I still make the

[jQuery] Re: dynamic content load into div

2007-05-10 Thread Shelane
I still make the recommendation that you write a function (with a name) that does the binding on the called page and place that in the callback function of the load. mybindingfunction = function(){ // look for the a tags in the body of the new page and bind } originalbinding function(){

[jQuery] space on your server for plugin demo?

2007-05-10 Thread Shelane
I have a plugin posted and available on google code, but I don't have a place to put the demo page. It will require any middleware application server. I can write in lasso, php, or jsp. The demo file itself should only be about 20k with code and the plugin is less than 8k. If someone is

[jQuery] Re: space on your server for plugin demo?

2007-05-11 Thread Shelane
Bil Corry generously offered me space on his server. The select Combo demo is now on http://lasso.pro/selectCombo/ Thanks. On May 10, 7:40 pm, Shelane [EMAIL PROTECTED] wrote: I have a plugin posted and available on google code, but I don't have a place to put the demo page. It will require

[jQuery] jqModal question

2007-05-15 Thread Shelane
I have a page with a list of volunteers for an event. Their status is displayed as to whether the have not received an invitation (class=invite), they received an invitation and haven't responded (class=unknown), they accepted the invitation (class=accepted), they declined the invitation

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

[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
. On Apr 20, 7:00 pm, Shelane [EMAIL PROTECTED] wrote: I'm having a strange issue on IE (isn't it almost always the culprit of issues). I'm returning this: taconite replaceContent select=#mystatus a href=# onClick=setStatus('mystatus', 'statusID', 'update status to this value');img src

[jQuery] Re: Finding id of this

2007-04-24 Thread Shelane Enos
. On 4/24/07 8:36 PM, ?ⓐⓚⓔ [EMAIL PROTECTED] wrote: change $('p.newsheader', '.newsitem').click(function(){ to $('p.newsheader , .newsitem').click(function(){ On 4/24/07, Shelane [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Sorry, hit the button and the message posted

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

  1   2   >