Re: [jQuery] jQuery AUTOCOMPLETE (by bassistance): submit on click

2010-02-18 Thread Rob Lacey
I'd imagine you'd want something like this? $('input#query').autocomplete('yoururl',{ . your options . }).result(function(event, item, formatted) { $(this).parents().find('form:first').submit(); }); I hope this helps RobL jjunior wrote: I'm having

[jQuery] jquery.autocomplete, setting additional params based on dom element

2010-02-18 Thread Rob Lacey
Hi there, I'm having an awful lot of bother trying to get this working. I want to implement auto completion for a text field as follows Currently our application returns a json string which we eval to extract the results and once the item is selected it fills in the hidden field value wit

[jQuery] Superfish and Wordpress

2009-12-20 Thread Rob
I am having trouble getting my wordpress theme to use the Superfish in the nav menu. My problem is I have subcategories that go 3 tabs deep and currently it is very tough to navigate through the drop down menu so I wanted to get Superfish to work since I have used it with other non-Wordpress sites

[jQuery] Re: Selectors and Internet Explorer

2009-12-10 Thread rob
n['parentMenu'] "... what is this notation called? On Dec 10, 2:12 pm, "Josh Nathanson" wrote: > Maybe try closing the option tag? > > > > -- Josh > > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] O

[jQuery] Selectors and Internet Explorer

2009-12-10 Thread rob
I'm having some problem with selectors in Internet Explorer. I have this demo setup that is basically a modified "linked menus" application. When you select something from one menu, it updates the contents in it's child menu. For some reason Internet Explorer will not read the correct selector.

[jQuery] Re: Linked Menus Help

2009-12-10 Thread rob
. Glad it works. > > -T.J. > > On Dec 9, 11:42 am, rob wrote: > > > Nevermind... I found the error... I'm having one of those mornings... > > Thanks for you help tho > > > On Dec 9, 10:30 am, rob wrote: > > > > I switched the .click event with .l

[jQuery] Re: Linked Menus Help

2009-12-09 Thread rob
Nevermind... I found the error... I'm having one of those mornings... Thanks for you help tho On Dec 9, 10:30 am, rob wrote: > I switched the .click event with .live(click), and it sort of works > now.  The problem with the parentMenu not updating is now ok.  When I > click the na

[jQuery] Re: Linked Menus Help

2009-12-09 Thread rob
on to all matched elements on the page and   > loaded in via AJAX or otherwise. > > Hope that helps. > > T.J. Simmons > Sent from my iPhone > > On Dec 8, 2009, at 5:28 PM, rob wrote: > > > I built a little utility modeling a linked menus concept... Click an > > item

[jQuery] Linked Menus Help

2009-12-08 Thread rob
I built a little utility modeling a linked menus concept... Click an item in the parent menu, and the child menu will update. When a parent option is selected the childMenu is reloaded with new . Selecting these no longer triggers $("#childMenu > option").click(function(){}); Does anyone have an

[jQuery] jquery.form.js and uploading only files

2009-11-27 Thread Rob Lacey
Hi there, I'm trying to use jquery.form.js to allow file uploads with my application. I'm trying to replace saving the whole form and uploading a image all at the same time by hijacking just the input[type=file] change event when you select a file and saving just the file using ajax and then

[jQuery] Image not loading

2009-10-29 Thread rob
I have this set of code... $('#thumbnails').append(""); This creates thumbnails on my webpage. In internet Explorer, they show up fine, but in Firefox they do not. I checked the image properties (right click -> properties). In IE, it is listed as a JPEG, but in FF, it says text/html. I have a fee

[jQuery] Re: return values

2009-10-26 Thread rob
>                postlink.push(link.href); >           } >      }); > >      alert(postlink.join(', ')); > > }); > > On Oct 22, 8:02 pm, rob wrote: > > > I'm having some problem withreturnvalue for a function.  I have read > > some postings about

[jQuery] return values

2009-10-22 Thread rob
I'm having some problem with return value for a function. I have read some postings about this, but I'm just not understanding something. Hopefully somebody can help me with this I'm trying to access google blogger's API to display blog entries on my site. I'm doing this through JQuery and

[jQuery] Re: JQuery, JFeed, Blogger

2009-10-20 Thread rob
I'm not sure if this JFeed plugin is not being used much, or maybe I'm using it for the wrong thing. Here's a better way to pull the Blogger Content... http://code.google.com/apis/gdata/samples/blogger_sample.html On Oct 19, 2:59 pm, rob wrote: > Hello, > > I'

[jQuery] JQuery, JFeed, Blogger

2009-10-19 Thread rob
Hello, I've been working on this for a while and I can't seem to figure this out. I'm trying to use the jFeed plugin to access an RSS feed from Blogger. I'm not trying to use any authentication, I just want to use public read-only access. I tried some real simple examples at first (using jFeed

[jQuery] Re: background position plugin

2009-10-13 Thread rob
try taking the numbers out of the parentheses like this: .animate({ backgroundPosition: "0px 0px",},{duration:400}) On Oct 13, 2:45 pm, vicix wrote: > hi, > > i build a menu with a background position animation plugin by Jonathan > Snook’s. > The mouseover and mouseout are correct, but i d

[jQuery] Re: Selecting Form Element Labels

2009-10-01 Thread rob
7;; > $("#"+fieldName).remove();  // removes input > $("label[for="+fieldName+"]").remove();  // removes label > > Assuming that your label will always have the same "for" as the ID of > the input. > > On Oct 1, 8:09 am, rob wrote: > >

[jQuery] Selecting Form Element Labels

2009-10-01 Thread rob
I'm using a form in several places for this project. I don't want to duplicates of this form so I have it as an include file. Each page requires all the same fields, however, there is one page where I'd like to remove two fields. First Name Is there a way to remove an input field and it's l

[jQuery] Trouble with backgroundPosition Plugin

2009-09-24 Thread rob
Having some trouble with this plugin. I've tried in both IE8 and FF3, but it doesn't seem to work. Basically the background position isn't moving... the function toArray(strg) is suppose to return the following return [parseFloat(res[1],10),res[2],parseFloat(res[3],10),res[4]]; this is th

[jQuery] Re: selectors, events, and scripted elements not working

2009-09-15 Thread rob
asically, when you add elements to the DOM dynamically after page load, > jQuery won't recognize those elements unless the live() method is used. > > > > On Tue, Sep 15, 2009 at 4:20 PM, rob wrote: > > > Hello, > > > I am having some problems with selectors and ev

[jQuery] Re: selectors, events, and scripted elements not working

2009-09-15 Thread rob
asically, when you add elements to the DOM dynamically after page load, > jQuery won't recognize those elements unless the live() method is used. > > > > On Tue, Sep 15, 2009 at 4:20 PM, rob wrote: > > > Hello, > > > I am having some problems with selectors and ev

[jQuery] selectors, events, and scripted elements not working

2009-09-15 Thread rob
Hello, I am having some problems with selectors and events. I have a row of thumbnails all part of the "thumbnails" class. I'm trying to run some code when a thumbnail is clicked, but something weird is happening. When i use this selector/event: " $(".thumbnails").click(function(){ // run some

[jQuery] Cluetip - Tooltip positioning issue within an iFrame in a UI dialog box

2009-07-03 Thread Rob
sue? If so, is there a workaround? Many thanks, Rob

[jQuery] Re: Set value in Parent

2009-06-11 Thread Rob
Found my own anser from earlier post. This worked: $(function() { $("#dollar1").bind("click",function() { $("#EndUser",top.document).val( $("#setEndUser").val() ); }); }); On Thu, Jun 11, 2009 at 9:36 AM, robert...@gmail.com wrote: > Hello, > > I have a page in an Iframe and when the user clicks

[jQuery] select range of code and wrap, multiple times

2009-05-26 Thread Rob
Hi folks, I hope you can help me out, I have a bit of html that looks something like: div --h1 --h2 --p --p --h2 --ul --h2 --p And am trying to figure out a way to grab from that code each h2 and its siblings, up-to-but-stopping-at the next h2, for example, I want to grab from the simplified

[jQuery] Re: jQuery click actions not functioning in redrawn HTML

2009-04-21 Thread Rob
BTW, don't mind the double pound signs, those get escaped by Coldfusion when the page is loaded.

[jQuery] jQuery UI Autocomplete - Removing items / detecting all values from multiselect

2009-04-08 Thread Rob
Hello, Is there a way to always know what values are selected inside of a jquery ui autocomplete widget? I know there is a "result" event that fires when you select a value, but what about when you remove a value? Thanks, Rob

[jQuery] addClass and removeClass

2009-04-03 Thread Rob Lacey
Hi there, I'm getting an interesting problem with addClass and removeClass. I'm attempting to build a rating system using radio buttons to select the rating. I'm actually hiding my radio buttons and styling the label to have pretty stars instead for a nicer interface. I want to highlight the

[jQuery] Re: Problem getting selected value from drop-down

2009-03-31 Thread Rob
I should have expounded more on the rest of it, but I had to run to a meeting. My apologies. :( On Mar 31, 11:21 am, LinkGuru wrote: > Apologies to Rob (I had only tried his 'add the id attribute to > the select tag' suggestion), I now find that if I write p_viewSelector=

[jQuery] Re: Problem getting selected value from drop-down

2009-03-31 Thread Rob
One thing I see wrong there: You are referencing dllViewSelector as an id in your jQuery, but you only have that as a name in your html. either add the id attribute to the select tag, or reference it as $("select[name='dllViewSelector'] option:selected") in your jQuery. On Mar 31, 6:51 am, LinkG

[jQuery] Intercepting AJAX responses globally

2009-03-17 Thread [rob desbois]
implemented this sort of thing before? Cna anyone point me in the right direction for how to implement this? I feel like I'm approaching it wrong... TIA --rob

[jQuery] Re: Problems with

2009-03-06 Thread Rob
IE allows users to type in the value in a file field, it's Firefox that prevents that. Also I think the syntax there may be wrong. I would use the name of the file field and change it's value attribute to blank. HTML: jQuery (using 1.3.x) $("#button").click(function(){ $("input[name='f

[jQuery] Re: Why does $.width return innerWidth but set outerWidth?

2009-02-13 Thread [rob desbois]
Filed on trac too: http://dev.jquery.com/ticket/4146 --rob On Feb 13, 5:04 pm, "[rob desbois]" wrote: > Hi Brandon, > > Give this a whirl:http://pastebin.com/d20276791 > Shows the described behaviour in Firefox 3.0.6 > > o_0 > > --rob > > On Feb 13, 2

[jQuery] Re: Why does $.width return innerWidth but set outerWidth?

2009-02-13 Thread [rob desbois]
Hi Brandon, Give this a whirl: http://pastebin.com/d20276791 Shows the described behaviour in Firefox 3.0.6 o_0 --rob On Feb 13, 2:34 pm, Brandon Aaron wrote: > This isn't the normal behavior. Could you create a test case for this? > > -- > Brandon Aaron > > On Fri,

[jQuery] Why does $.width return innerWidth but set outerWidth?

2009-02-13 Thread [rob desbois]
This seems backwards; I would never expect that passing the return of a getter to its corresponding setter to change the return from the getter! Can someone tell me if this is a bug or is by design - and if by design, why? TIA, --rob

[jQuery] Re: [validate] Attaching events to dynamically added fields

2009-01-09 Thread Rob
t; > For another example on generating > those:http://jquery.bassistance.de/validate/demo/dynamic-totals.html > > Jörn > > On Fri, Jan 9, 2009 at 12:34 AM, Rob wrote: > > > Hi Jörn, > > > I have been plugging away at this for a while now, with no luck.  I > >

[jQuery] Re: [validate] Attaching events to dynamically added fields

2009-01-08 Thread Rob
pear to be validated along with the other fields. Could I trouble you to take a quick peek at my test page? Thanks, Rob On Jan 6, 2:34 am, "Jörn Zaefferer" wrote: > The validation plugin binds various events to the form, handling everything > that bubbles up from its form elements. So

[jQuery] Re: [validate] Attaching events to dynamically added fields

2009-01-06 Thread Rob
bles up from its form elements. So you don't have to add any event > binding after adding new elements, just make sure the validation rules are > present. If it isn't working, its probably a different issue. > > Jörn > > On Mon, Jan 5, 2009 at 11:26 PM, Rob wrote:

[jQuery] Re: [validate] Attaching events to dynamically added fields

2009-01-05 Thread Rob
ing the elements would do the trick, but no such luck. Rob On Jan 5, 1:12 pm, brian wrote: > On Mon, Jan 5, 2009 at 2:40 PM, Rob wrote: > > > Hi Jörn or anyone else familiar with this plugin, > > > First off, thanks for the great validation plugin.  I hope I do not > >

[jQuery] [validate] Attaching events to dynamically added fields

2009-01-05 Thread Rob
I add append the code for a new field, the validation events are, of course, not attached to the new DOM elements. What's the best way to accomplish this? Rob

[jQuery] [validate] Attaching events to dynamically added fields

2009-01-05 Thread Rob
I add append the code for a new field, the validation events are, of course, not attached to the new DOM elements. What's the best way to accomplish this? Rob

[jQuery] Re: HowTo: Trigger error callback in ajax request

2008-12-17 Thread Rob Wilkerson
On Dec 17, 9:57 am, MorningZ wrote: > "Is it a non-200 status code" > > I can't say it's 100% of the time, but in my code it seems to be the > case Ding, ding, ding. Looks like that's it. In my PHP script, this is what I did to test... try { throw new Exception ( 'Something I made up' ); }

[jQuery] HowTo: Trigger error callback in ajax request

2008-12-17 Thread Rob Wilkerson
ck to receive the response if the server page returns an error, but what is that way? Thanks. Rob

[jQuery] Re: Access Elements Rendered in a Thickbox

2008-12-16 Thread Rob Wilkerson
On Dec 16, 3:33 pm, Ricardo Tomasi wrote: > Your thickbox script most certainly provides a callback function where > you could add those handlers, which one are you using? Hey Ricardo - I'm using http://jquery.com/demo/thickbox/. I'll dig a little deeper. I was hoping someone already knew th

[jQuery] Access Elements Rendered in a Thickbox

2008-12-16 Thread Rob Wilkerson
Hey all - I'm looking for/wondering whether there is a way to access an element loaded in a thickbox. I have a page that launches thickbox to load a form. I need to be able to set a click() event listener on the submit button of that form so that I can submit the form via ajax. Unfortunately, I

[jQuery] Day and Month Picker

2008-11-05 Thread Rob Bazinet
this. Thank you, Rob Bazinet

[jQuery] Re: Accordian menu + FadeIn - some weirdness...can someone help me?

2008-10-07 Thread Rob Fletcher
how about if you click the item that is open and you click that item again...how would you make it close? And does the contents of the menu have to be wrapped in tags? Rob On Sun, Oct 5, 2008 at 5:34 PM, Alex <[EMAIL PROTECTED]> wrote: > > i have managed to pull this off pretty w

[jQuery] flv page turner

2008-09-23 Thread Rob
ker"; fvBuf.push(READER_ID); fvBuf.push("/"); fvBuf.push(filename); fvBuf.push("&autoPlay=true&autoRewind=true"); $("#flashvars-data").attr("value", fvBuf.join("")); var player = $("#playerContainer").clone(true); //console.log("player: ", player.html()); $("#playerContainer").html(player.html()); } Any ideas? thanks, -Rob

[jQuery] Re: Accordian menu + FadeIn - some weirdness...can someone help me?

2008-09-12 Thread Rob Fletcher
Noone knows how to stabilize the animation and make this run better? On Fri, Sep 12, 2008 at 11:42 AM, RFletcher <[EMAIL PROTECTED]>wrote: > I am making an accordian menu with 4 main buttons. All buttons should > be closed at start. When you click 1 button the content area should > slide down an

[jQuery] Re: How to prevent multiple click sound in IE 6 using jQuery History plugin

2008-09-08 Thread Rob Anderson
this._callback(hash); > >                 } > > > - > > > I note that the multiple click sounds occur in thejQueryHistorydemo > > as well, so don't think it is just my implementation. > > > Is there perhaps another way to load the new hsh location into the > > iframe? > > > Any help much appreciated :) > > > Thanks,Rob

[jQuery] How to prevent multiple click sound in IE 6 using jQuery History plugin

2008-09-07 Thread Rob Anderson
I note that the multiple click sounds occur in the jQuery History demo as well, so don't think it is just my implementation. Is there perhaps another way to load the new hsh location into the iframe? Any help much appreciated :) Thanks, Rob

[jQuery] Re: div magic

2008-08-21 Thread Rob
one, I don't know. It modifies the way > the user gets the title (much more subtle/hidden the second way). > > How to do this ? > > $('div.box').each(function(){ >    this.title = $(this).find('h3').remove().attr('title') || ''; > &g

[jQuery] div magic

2008-08-21 Thread Rob
me script in my site's startup script that looks for all divs with the class "box" and modifies them so the ending result is like the above. Some neat content What do you think? Thanks in advance, Rob

[jQuery] UI/TABS: Can't enable multiple tabs in one call

2008-07-22 Thread [rob desbois]
elect? I've been trying on the element I called .tabs() on initially to create the tabs but that just does nothing TIA, --rob

[jQuery] Re: expr in $("", expr) not as expected

2008-07-02 Thread [rob desbois]
On Jul 2, 2:11 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > On Jul 2, 2008, at 7:57 AM, [rob desbois] wrote: > > > > > > > Hi, have a feeling this may be a silly question but here goes.. > > > Test output from Firebug's console is below to explain

[jQuery] expr in $("", expr) not as expected

2008-07-02 Thread [rob desbois]
ont] I then want to find a particular one: >>> $("div", divs) Object length=0 prevObject=Object jquery=1.2.6 Given that the 'expr' parameter to $(...) contains an array of divs, why is using the selector "div" not returning anything from that?? Am I misunderstanding expr? Confused... --rob

[jQuery] Re: Opera, IE8, JQuery Dialogs

2008-05-31 Thread Rob Ashton
/trunk/ui/ui.dialog.js > > and will be included in the next jQuery UI release, in a couple days. > > - Richard > > On Sat, May 31, 2008 at 5:12 PM, Rob Ashton <[EMAIL PROTECTED]> wrote: > > > Two things. > > > In opera: > > > $(

[jQuery] Opera, IE8, JQuery Dialogs

2008-05-31 Thread Rob Ashton
Two things. In opera: $('#confirmSnippetDelete').dialog( { position: new Array(600 , 500) } ); The script ignores the 'top' position specified as the second value of that coordinate pair. This was narrowed down to a local variable called 'top' which was conflicting with the 't

[jQuery] Preventing command+A (select all) in FF/Mac

2008-03-06 Thread Rob Barreca
ole.log(e, e.metaKey);console.log("Try to cancel select-all"); // This gets triggered. e.preventDefault(); //e.stopPropagation(); //var t = setTimeout("$('#header-login').trigger('click');console.log('click');", 20); return false; } }); -Rob

[jQuery] Passing extra data to AJAX handler functions

2007-11-27 Thread Rob Barreca
link : linkQueue[id] > }, { callback : handleAddLinkComplete, arguments : [123] }, 'json'); or something. What is the best way here or is my dream a reality? Cheers, -Rob

[jQuery] Re: Selector Not Working in IE7?

2007-11-20 Thread Rob Wilkerson
On Nov 20, 2007 5:02 PM, Josh Nathanson <[EMAIL PROTECTED]> wrote: > > WOW, thanks for that link to debugbar.com -- I had been searching far and > wide for an IE debugger and couldn't find anything good -- that is sweet! It's no Firebug, but it's the best I've seen for IE.

[jQuery] Re: Selector Not Working in IE7?

2007-11-20 Thread Rob Wilkerson
On Nov 16, 1:33 pm, Rob Wilkerson <[EMAIL PROTECTED]> wrote: > I'm trying to "manually" interact with the multifile plugin and, as > part of that endeavor, I need to systemically access the anchor tag > that provides "Delete" functionality. The

[jQuery] Selector Not Working in IE7?

2007-11-16 Thread Rob Wilkerson
ny insight would be much appreciated. I don't see any indication in the jQuery docs that this type of selector shouldn't work in IE... Thanks. Rob

[jQuery] Re: Dynamically Populating Select Box

2007-10-30 Thread Rob D
ogle.com/p/jqueryselectcombo/ http://lasso.pro/selectCombo/ 3. Check out my plugin: http://www.msxhost.com/jquery/linked-selects/json/ Perhaps you can use the example php code in the download to work it out for ASP! Cheers Rob Snooze wrote: I am trying to make a select box that with populate depending

[jQuery] Re: problem with jquery

2007-10-24 Thread Rob Desbois
Mark, I think you are saving the document as rich text format (RTF). Try pasting the code sample into notepad and save it from there. Once that works, make sure that in whatever editor you're using you save things as 'plain text'. Hope that helps --rob On 10/24/07, mark &l

[jQuery] Re: jqMultiSelects suggestion

2007-10-23 Thread Rob Desbois
Rodrigo, This has now been implemented along with some additional features. jqMultiSelects v0.2 is available from http://code.google.com/p/jqmultiselects/ Cheers, --rob On 10/22/07, Rob Desbois <[EMAIL PROTECTED]> wrote: > > Hey Rodrigo, > > Apologies for the massive time

[jQuery] ANNOUNCE: v0.2 of jqMultiSelects released

2007-10-23 Thread Rob Desbois
Thanks to everyone who made suggestions and waited for so long. Further information and downloads are available from http://code.google.com/p/jqmultiselects/ --rob -- Rob Desbois

[jQuery] Re: jqMultiSelects suggestion

2007-10-22 Thread Rob Desbois
Hey Rodrigo, Apologies for the massive time in replying, I am very busy these days. That is a great suggestion, and one which a few people have mentioned. I will modify the official plugin source as soon as possible, but for now your fix does just great :-) All the best --rob On 9/22/07

[jQuery] Determining the length of an object/array in IE

2007-10-13 Thread Rob
I know this should be simple, I know this should work, but it isn't and doesn't. so if you take a look-see at http://www.roberthenrylowe.com/lab/jQuery/codeconverter.html in Firefox, you'll see what I am trying to accomplish and in fact, it works there. Basically I take a block and make it a fa

[jQuery] Re: I would like to return xhtml character entities

2007-10-11 Thread Rob
That's perfect! Thanks so much On Oct 11, 12:53 am, George <[EMAIL PROTECTED]> wrote: > I've not tried this but what if you use .text($codetext) instead of > append($codetext) ? > (Or is this not what you want?!) > > George

[jQuery] I would like to return xhtml character entities

2007-10-10 Thread Rob
I would like to grab a string that contains '<' and '>' and NOT have jQuery eval and force my browser to render it has html. It's difficult for me to convey what I want, but basically I am trying to send it latin or unicode entity references for the angle brackets and want to write those brackets

[jQuery] Dragging from droppable to droppable

2007-10-10 Thread Rob
that I can determine what is being dragged and dropped where? Best, Rob

[jQuery] Repost: Dragging from droppable to droppable

2007-10-10 Thread Rob
e mouseup event) ? Is there a way that I can determine what is being dragged and dropped where? Best, Rob

[jQuery] Re: editease - my first plugin endeavor

2007-10-01 Thread Rob D
Hi Stephen, Awesome, I like the look of this a lot! I can't wait to find some time to muck about with this in the very near future. Good Luck with your project. Rob [EMAIL PROTECTED] wrote: Well I have been playing with jQuery for a few months, and wanted to test a few basic con

[jQuery] Re: multiple ajax selects; dynamic selects don't support onchange?

2007-09-27 Thread Rob D
Hi Karl, Thanks for your feedback, I will certainly make that modification you have suggested. Ya know you really do lean something new everyday ;) Kind regards Rob Karl Rudd wrote: Very nice. I know it's only a demo but you could reduce size of the JSON responses by about 60% (or

[jQuery] Re: multiple ajax selects; dynamic selects don't support onchange?

2007-09-26 Thread Rob D
ion Israel Hi Israel Check out my recently announced plugin called LinkedSelects. http://www.msxhost.com/jquery/linked-selects/json/ It might be of assistance to you! Cheers Rob

[jQuery] Validate plugin and attribute selector values with [square brackets]

2007-09-21 Thread Rob Desbois
e can advise on that I'd be very grateful. As an aside - Joern this is the first time I've used validate, all I'll say is thank you, it's a fantastic plugin very well thought-out. --rob -- Rob Desbois

[jQuery] Re: Interacting with the MultiFile Plugin

2007-09-17 Thread Rob Wilkerson
On Sep 17, 9:17 am, Rob Wilkerson <[EMAIL PROTECTED]> wrote: > I have a form that is using both the ajaxFileUpload and the MultiFile > plugins. When a user selects a file for upload, the change event > uploads the file via ajax for validation. If an error occurs, I need >

[jQuery] Re: Interacting with the MultiFile Plugin

2007-09-17 Thread Rob Wilkerson
On Sep 17, 9:17 am, Rob Wilkerson <[EMAIL PROTECTED]> wrote: > I have a form that is using both the ajaxFileUpload and the MultiFile > plugins. When a user selects a file for upload, the change event > uploads the file via ajax for validation. If an error occurs, I need >

[jQuery] postbacks, $(document).ready(), and asp.net

2007-09-17 Thread Rob
, but the page doesn't show the updated styles. Any ideas on what to track down? I've checked that the style is indeed changed with Firebug on postbacks, so I have no idea why the browser doesn't display the updated styles. Thanks Rob

[jQuery] Interacting with the MultiFile Plugin

2007-09-17 Thread Rob Wilkerson
ebug // alert ( data['files'] ); $('form').prepend ( '' ); } } catch ( e ) { alert ( 'Error: ' + e.message ); } }, Any help would be much appreciated. Thanks. Rob Wilkerson

[jQuery] Re: New plugin - Linked Selects

2007-09-15 Thread Rob D
susggestion: including a cache option in call function." Do you mean like caching the DB queries? Kind regards Rob

[jQuery] New plugin - Linked Selects

2007-09-14 Thread Rob D
IE. I would like to thank Remy Sharp for the initial idea, Joel Birch for some pointers on building plugins and especially my good friend Shelane Enos for the collaboration. I would appreciate any feedback in the way of suggestions and improvements. Have a great weekend everyone... Rob

[jQuery] Re: .ready(), Rhino and HttpUnit

2007-09-13 Thread Rob Desbois
> > I think you might be able to use John's modified version of Rhino that > acts like a browser. Where it is I'm not sure but it wasn't that long ago > that he wrote it. > > -- > Brandon Aaron > > On 9/12/07, Sean Catchpole <[EMAIL PROTECTED]> w

[jQuery] Re: .ready(), Rhino and HttpUnit

2007-09-12 Thread Rob Desbois
r attachEvent are defined (I change the else to an else if to check attachEvent - it's undefined). Seeing as there's been a fair bit of mention of jQuery in Rhino on the list, I find it hard to believe jQuery won't work with it - so has anyone who's used Rhino with jQuery seen this

[jQuery] .ready(), Rhino and HttpUnit

2007-09-12 Thread Rob Desbois
y() after checking that is is defined, I still get the same result: > if (typeof $(document).ready === 'function') > I know this is likely to be a Rhino/HttpUnit problem but as I know several people on this list are familiar with Rhino I wanted to know if anyone's seen this

[jQuery] Re: Need tips on how i can optimize the scripts on this page...

2007-08-23 Thread Rob Desbois
nt. I did just visit, but a minute of clicking things yielded no error for me, so I have given up. What are the errors you're receiving? Have you tried debugging? --rob On 8/22/07, Trinodia <[EMAIL PROTECTED]> wrote: > > > Hi all! > > Just have gotten my head int

[jQuery] Re: ORing selectors

2007-08-17 Thread Rob Desbois
Does anyone know offhand how much overhead using .add() instead of the comma incurs? Is it just the additional function call? I've always used comma in selectors but using .add() instead is much clearer as it separates the selectors in an obvious manner. --rob On 8/15/07, Matt Stith &l

[jQuery] Re: .each "this" inside class

2007-08-14 Thread Rob Desbois
#x27; is the class object >}); > } > I hope that helps...if I'm wrong can you give a URL or some example code? --rob On 8/12/07, Eridius <[EMAIL PROTECTED]> wrote: > > > > now when i use the .each function, inside that function "this" points to > the

[jQuery] Re: min max in array

2007-08-10 Thread Rob Desbois
Your trusty friend 'Google' is usually the best way for this! A quick search on javascript array max yields a useful result from none other than John: http://ejohn.org/blog/fast-javascript-maxmin/ --rob On 8/10/07, Simpel <[EMAIL PROTECTED]> wrote: > > > Hi there! not

[jQuery] Re: Excluding an element part of a selection

2007-08-10 Thread Rob Desbois
I'm not sure how to do this as it stands - I've never been particularly au fait with text nodes and how to work with them. However, a possible solution is to put the text next to the checkbox in a and then attach the click event to that. --rob On 8/9/07, David Garcia Ortega <[EM

[jQuery] Re: Nested Tables Question

2007-08-08 Thread Rob Desbois
Hi Mike, If you use $("table table") that will select all tables which are inside another table in the document. --rob On 8/7/07, Mike Miller <[EMAIL PROTECTED]> wrote: > > > Hi, > > I need to find a quick way to determine whether or not table elements > o

[jQuery] Re: Toggle visibility on an entire table column?

2007-08-07 Thread Rob Desbois
Andy, For future reference in case you need it on a different column - the :nth-child(n) selector will do a similar thing for the nth column (n is 1-based, not 0-based though). --rob On 8/7/07, Andy Matthews <[EMAIL PROTECTED]> wrote: > > Right on! That's exactly what I w

[jQuery] Re: Looking for correct Jquery AJAX statement

2007-08-07 Thread Rob Desbois
ed elements as an array of DOM objects, so $("#feeds").get() will give you an array with a single DOM element - that with the ID 'feeds' (unless it doesn't exist, in which case you'll get an empty array). HTH, --rob On 8/7/07, Jack <[EMAIL PROTECTED]> wrote: &g

[jQuery] Re: What does === equate to?

2007-08-02 Thread Rob Desbois
. if Type(x) is different from Type(y), return false. Steps 2-13 of both algorithms are exactly the same, so if the types match then there's no difference in the execution of each algorithm, and no overhead for the abstract algorithm. --rob On 8/2/07, Terry B <[EMAIL PROTECTED]> wrote: &

[jQuery] Re: What does === equate to?

2007-08-02 Thread Rob Desbois
;t for the life of me remember how, but it involved lots of in-depth debugging and head-scratching to find the problem. I'm more wary now and think that these operators are the way to go. --rob On 8/2/07, Sam Collett <[EMAIL PROTECTED]> wrote: > > > I don't think many a

[jQuery] Re: Two words for Jquery

2007-08-01 Thread Rob Desbois
he best scripter and jquery has simply allowed me to > > > accomplish with my own personal site so much more than I would > > > have otherwise attempted. You people behind jquery are genious and > > > your work is great, thanks. > > > > > > Kiww

[jQuery] Re: It's all in the mind - the power of belief

2007-07-27 Thread Rob Desbois
f causing. > > > > What does this have to do with religion? The answer is nothing > > directly, but it does demonstrate the power of belief. If you believe > > that mobile masts will make you ill you will feel ill. If you believe > > in God then God will have real spiritual impact in your life, > > regardless of whether or not he really exists. > > -- Rob Desbois Eml: [EMAIL PROTECTED] Tel: 01452 760631 Mob: 07946 705987 "There's a whale there's a whale there's a whale fish" he cried, and the whale was in full view. ...Then ooh welcome. Ahhh. Ooh mug welcome.

[jQuery] Re: " vs '

2007-07-26 Thread Rob Desbois
Sean, Attributes in (X)HTML don't need to be double-quoted, again single-quotes are equally valid there so '' and "" are effectively the same and both valid. I know you probably know, I just wanted to rephrase "It is easier to type an html string if you use sing

[jQuery] Re: datePicker plugin inline

2007-07-26 Thread Rob Desbois
Larry, Try the dynarch calendar at http://www.dynarch.com/projects/calendar/ It's not jQuery but does the job and can most likely be ported to jQuery if desired. --rob On 7/26/07, Larry Garfield <[EMAIL PROTECTED]> wrote: Thanks, Kelvin. (And sorry about misspelling your nam

  1   2   3   >