Re: [jQuery] jEditable: how to remove behaviour

2007-03-29 Thread Sam Collett
On 28/03/07, Abel Tamayo [EMAIL PROTECTED] wrote: Hi all, I'm using jEditable for a webpage, but I would like to make it so that, once you've edited the text, the behaviour is removed and you can edit it no longer. Does anyone know how to do that? Thanks. You could try

Re: [jQuery] JQuery vs prototype

2007-03-28 Thread Sam Collett
On 28/03/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Michel Brouckaert schrieb: If you have more time and the project would be a really big one, i would advice you to rather use Prototype. Class based designs mostly only pay off in huge projects because of reusability. So at the end of

Re: [jQuery] change event on select

2007-03-28 Thread Sam Collett
just need to bind the change event to the select element after it's been inserted into the DOM. Mike On 3/26/07, Kush Murod [EMAIL PROTECTED] wrote: Hi Sam, Still didn't work, my guess is The reason I guess, because that 'select' is loaded through AJAX, and once loaded event

Re: [jQuery] jQuery Powered Sites - Keep the Links Coming

2007-03-28 Thread Sam Collett
On 28/03/07, Jason Levine [EMAIL PROTECTED] wrote: Don't know if I'm the first to realize this or if I'm just slow, but I just realized that Mozilla.org uses JQuery. I was looking at some image previews of an extension and the images popped up in a thickbox style. I got curious as to what

Re: [jQuery] jQuery Powered Sites - Keep the Links Coming

2007-03-28 Thread Sam Sherlock
http://tfl.gov.uk/ though tfl leave alot to be desired (Purple Kenny is spending £12million putting a satellite in space) the site (and also oystercard.com) are using jquery apologies if this has already been submitted, it was not on the powered by page - S On 28/03/07, Sam Collett [EMAIL

Re: [jQuery] Is the JQuery slowest?

2007-03-26 Thread Sam Collett
On 22/03/07, codar [EMAIL PROTECTED] wrote: Please check this: http://homepages.nildram.co.uk/%7E9jack9/base2/speedtest/ Blocked here because Nildram is a hosting site (even our own hosting companies home page is blocked). Any alternative places to see this?

Re: [jQuery] change event on select

2007-03-26 Thread Sam Collett
On 26/03/07, Kush Murod [EMAIL PROTECTED] wrote: anyone? Kush Murod wrote: Hi, I am trying to do event bubbling on selectbox, works in FF not in IE Maybe I am missing something? $(#workList).change(function(event){ var me = $(event.target);

Re: [jQuery] Ok... one last effort to make this work... help!

2007-03-16 Thread Sam Collett
On 15/03/07, Rick Faircloth [EMAIL PROTECTED] wrote: Well, Daemach...seems I've got things working well with my jQuery client side data-handling and CF server side validation. My next step is to submit the form data and process it via CF and return the result. I've got the jQ code and CF for

Re: [jQuery] Select in frames

2007-03-16 Thread Sam Collett
On 16/03/07, George Moschovitis [EMAIL PROTECTED] wrote: Dear devs, I have a short question. Is there a jquery shortcut for the following js code: document.getElementById('myframe').contentWindow.document.getElementById('myframe').submit(); I am trying to programmatically submit a form

Re: [jQuery] Ok... one last effort to make this work... help!

2007-03-16 Thread Sam Collett
On 16/03/07, Rick Faircloth [EMAIL PROTECTED] wrote: Hi, Sam, and thanks for the reply and code... I tried using your code, but still nothing happens when I try to calculate the payment. It may be my implementation of the js or it still may be a problem in my ColdFusion code. Do I just

[jQuery] OT: Detecting memory leaks in Firefox

2007-03-15 Thread Sam Collett
Anyone know of any good tools for debugging memory leaks in Firefox? I have installed the Leak Monitor extension, but it does not seem to work. Plus when it did (Firefox 1.5), the constant popups proved irritating. I want to find out what is causing leaks (both in the browser and web pages),

Re: [jQuery] *New jQuery plugin* - autoSave

2007-03-15 Thread Sam Collett
On 15/03/07, Daemach [EMAIL PROTECTED] wrote: To try and master jQuery I've been playing with a few ideas. I decided to flesh this one out for use on one of my sites and in hopes it can benefit someone else as well I'm making it available. Depending on your view of network traffic this may

Re: [jQuery] Test

2007-03-15 Thread Sam Collett
On 15/03/07, Rey Bango [EMAIL PROTECTED] wrote: Test ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ $(subject:Test).reply(Another test?); ___ jQuery mailing list

Re: [jQuery] JQuery Form plugin

2007-03-15 Thread Sam Collett
On 15/03/07, George Moschovitis [EMAIL PROTECTED] wrote: The form plugin does not currently support file uploads. Is this something easy to fix? Any workaround? -g. -- http://blog.gmosx.com http://cull.gr http://www.joy.gr http://nitroproject.org You may be able to use this plugin:

Re: [jQuery] How to convert class to style='attrs ...'

2007-03-15 Thread Sam Collett
On 15/03/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I'm trying to write a function to generate MySpace friendly HTML. MySpace does not accept link tags, so the HTML from my page that contains class='whatever', will mean nothing on the mySpace page. My question is, given an

Re: [jQuery] finding y position

2007-03-14 Thread Sam Collett
On 14/03/07, Fabien Meghazi [EMAIL PROTECTED] wrote: By far the easiest way to do that is to use the Dimensions plugin. It is amazingly accurate, even taking into account borders, padding, overflow:scroll, etc. Any idea why the dimension plugin does not get into the jquery core ? There

Re: [jQuery] Scope a variable to a plugin

2007-03-14 Thread Sam Collett
On 14/03/07, Tom Holder [EMAIL PROTECTED] wrote: Bit of a simple question this I'm sure but how do I scope a variable to a plugin I'm creating and not expose it beyond my plugin? I do want the variable to be accessible to all the methods in my plugin though. Thanks Tom You could write your

Re: [jQuery] Scope a variable to a plugin

2007-03-14 Thread Sam Collett
On 14/03/07, Tom Holder [EMAIL PROTECTED] wrote: Cheers Sam, That doesn't make a lot of sense to my I have to be honest. 1. Why are you starting with (function($) This means that it would execute immediately and any variables contained within the function won't be seen by other scripts. 2

Re: [jQuery] Scope a variable to a plugin

2007-03-14 Thread Sam Collett
On 14/03/07, Tom Holder [EMAIL PROTECTED] wrote: Thanks for that Sam. One further thing you might be able to help with. I have a function that loops through some elements and then inside attaches a click even that results in the HTML being reloaded... hence I need to call the function from

Re: [jQuery] Selecting only one level in DOM and no deeper

2007-03-14 Thread Sam Collett
On 14/03/07, Dan Eastwell [EMAIL PROTECTED] wrote: Haha! Thank you everyone, it was so simple! I should have known, too, as I know a lot more about CSS than I do about Javascript (which isn't that much!) For the record: Do the internet explorers support the child selector (when it's used in

Re: [jQuery] Do I really need to do an 'eval' in JQuery?

2007-03-14 Thread Sam Collett
On 14/03/07, Graham Churchley [EMAIL PROTECTED] wrote: I want to hide the all table rows that have a specific value for the custom 'grp' attibute. This code works: $('table.grouped tr.group').click(function() { var attrName = $(this).attr(grp); eval($(this).siblings('[EMAIL

Re: [jQuery] JQuery and DOM functions

2007-03-13 Thread Sam Collett
On 13/03/07, Guillaume Léonard [EMAIL PROTECTED] wrote: Greetings, before explaining my problem, I must advise you that I'm a beginner in Javascript, DOM and everything around it. I currently continue a web app that uses DOM so I'm learning at the same time. My problem is that I got

Re: [jQuery] Has anybody run into this?

2007-03-13 Thread Sam Collett
On 12/03/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Rick Faircloth schrieb: Hi, all.. I've been working on Jorn's Validation plug-in and have just about got everything working perfectly for one particular form and I asked my wife to fill out the form and test the validation. She's

Re: [jQuery] Validation help with Date Selector

2007-03-12 Thread Sam Collett
On 11/03/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Rick Faircloth schrieb: onInvalid: function(form) { $(form).find([EMAIL PROTECTED]).attr(disabled, disabled); }, onValid: function(form) { $(form).find([EMAIL PROTECTED]).attr(disabled, ); } That looks good to me!

Re: [jQuery] Security with Ajax

2007-03-12 Thread Sam Collett
On 11/03/07, JQuery - SimDigital [EMAIL PROTECTED] wrote: I need to protect the data generated from my site, just allowing to access authorized sites. Ex.: Authorized Site1 Allowed to access/include the file http://www.mysite.com/business.php. Authorized Site2 Allowed to access/include

Re: [jQuery] Security with Ajax

2007-03-12 Thread Sam Collett
, it would no longer work (as the key will then be invalid). i.e. ?php if ($_SESSION['ajaxKey'] == $_POST['ajaxKey']) doStuff(); else denyAccess(); ? On 3/12/07, Sam Collett [EMAIL PROTECTED] wrote: On 11/03/07, JQuery - SimDigital [EMAIL PROTECTED] wrote: I need to protect the data

Re: [jQuery] Validation help with Date Selector

2007-03-12 Thread Sam Collett
On 12/03/07, Rick Faircloth [EMAIL PROTECTED] wrote: There may be other reasons you may want to call a function when everything is OK Can you give some examples of what you're thinking about? Maybe performing an auto submit (although that would put extra load on the server) or showing

Re: [jQuery] How to tell numerically which sibling element I've triggered?

2007-03-12 Thread Sam Collett
On 12/03/07, Matt [EMAIL PROTECTED] wrote: Hello, all jQuery gurus. I deeply appreciate all the help people provide one another on this list, and how generously the experts contribute their time and wisdom to newcomers such as myself. I finally have an issue I'd like some help with myself, and

Re: [jQuery] How to tell numerically which sibling element I've triggered?

2007-03-12 Thread Sam Collett
On 12/03/07, Aaron Heimlich [EMAIL PROTECTED] wrote: On 3/12/07, Sam Collett [EMAIL PROTECTED] wrote: each has a parameter which is the index: $(document).ready( function() { $('#articlesIndex li a').click( function(i) { alert(You just clicked list item number: + (i + 1

Re: [jQuery] Please add a basic debug function to the jQuery core...

2007-03-12 Thread Sam Collett
On 12/03/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Daemach schrieb: I already have a plugin - it contains the code I put in my first email. I just don't want to have to add that line or remember to remove it. Adding the function directly to jquery will not affect the file size

Re: [jQuery] Validation help with Date Selector

2007-03-11 Thread Sam Collett
than actual working code (and it may work if it is implemented). -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sam Collett Sent: Saturday, March 10, 2007 7:02 PM To: jQuery Discussion. Subject: Re: [jQuery] Validation help with Date Selector I

Re: [jQuery] Jquery, Thickbox, and tracking scripts

2007-03-11 Thread Sam Collett
On 08/03/07, Dan Shields [EMAIL PROTECTED] wrote: I am trying to use jQuery and thick box to replace my existing popups. The one thing is that on these popups, I have tracking scripts that are pointed to outside domains and it seems to cause my javascript to error out saying uncaught

Re: [jQuery] Validation help with Date Selector

2007-03-10 Thread Sam Collett
On 10/03/07, Rick Faircloth [EMAIL PROTECTED] wrote: Thanks, Sam! That will be much more flexible than my approach. I've often found that when I first begin to learn coding techniques, that I end up learning the long-hand version first and getting that working, then it's easier to see ways

Re: [jQuery] Options for Validation...

2007-03-09 Thread Sam Collett
On 08/03/07, Rick Faircloth [EMAIL PROTECTED] wrote: I don't have much of a clue how to code what you mean with the errorPlacement function: Here's what I tried, which didn't work...everything else runs fine without it... remember, unfortunately you're helping someone who has just begun to

Re: [jQuery] Options for Validation...

2007-03-09 Thread Sam Collett
On 09/03/07, Rick Faircloth [EMAIL PROTECTED] wrote: Hi, Sam, and thanks for the reply... With your code, the validation function seems to be working, but the error message is not displaying... And it's not that I want *every* error message to display before #Principal (that's the id

Re: [jQuery] Good datepicker

2007-03-09 Thread Sam Collett
On 09/03/07, Rey Bango [EMAIL PROTECTED] wrote: Hey guys, I'm looking for a good JS-based date picker. I wanted to use the one in the plugins folder but it doesn't allow for going backwards on the calendar. I need to be able to select any date. Suggestions? Rey -- BrightLight Development,

Re: [jQuery] Good datepicker

2007-03-09 Thread Sam Collett
On 09/03/07, Rey Bango [EMAIL PROTECTED] wrote: Hi Alexandre, Yes we're talking about the same plugin but it doesn't go back in time unless you explicitly set the start date to an earlier date. Thats not what I'm looking for. I want arrows that can go back and forth between months.

Re: [jQuery] Wich element triggered an event?

2007-03-09 Thread Sam Collett
On 09/03/07, Abel Tamayo [EMAIL PROTECTED] wrote: Hi all. I'd like to know if there's a standard, easy way to determine with element triggered an event. I'm pretty sure there is, but can't find it in google. Maybe an atribute in the e parameter received by the function like: $(p).bind(

Re: [jQuery] Validation help with Date Selector

2007-03-09 Thread Sam Collett
On 09/03/07, Rick Faircloth [EMAIL PROTECTED] wrote: Well.. thanks to everyone's help, especially yours, David, I've finally got a perfectly working solution that is based on your solution, David. Thanks to Jorn and Sam, too! (Just a note: I've still got one problem to solve. When a form

[jQuery] Manipulating the contents of an iframe

2007-03-07 Thread Sam Collett
I have a parent window that is contains an iframe (containing a calendar) that I want to work with. Both are in the same domain (and folder) and both include jQuery. When I click on a day (i.e. a table cell), I want to get the id (which contains the date) to set the value of a text box in the

Re: [jQuery] rewriting generic ajax jQuery style

2007-03-06 Thread Sam Collett
On 05/03/07, Jim Wharton [EMAIL PROTECTED] wrote: Hi, I'm trying to change a bunch of handwritten Ajax stuff to use jQuery's methods. (I figure, if I'm already including the jquery.js file, I may as well use the heck out of it.) My current code sends a request to a php page and gets back an

Re: [jQuery] confirm link

2007-03-06 Thread Sam Collett
On 05/03/07, James Thomas [EMAIL PROTECTED] wrote: Close ... try this: $(a).click(function(){return alertSave($(this).attr(href));}); function alertSave(url) { var dataControl = $('#changedAppointments').attr(value); if (dataControl.length 0) { if

Re: [jQuery] get class name

2007-03-05 Thread Sam Collett
On 05/03/07, Glen Lipka [EMAIL PROTECTED] wrote: If the ID only has one class you can also say: $(#myID[class=foo]).fadeOut(); or var theNode = $(#myID[class=foo]) Also, wouldn't your example work without the IF? $(#myId).is(myClass).fadeOut(); or var theNode = $(#myId).is(myClass) Glen

Re: [jQuery] jqUploader updated

2007-03-05 Thread Sam Sherlock
guess its been changed. this works http://www.pixeline.be/test/jquery/jqUploader/ On 05/03/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: http://www.pixeline.be/experiments/jqUploader/ -- *From:* Felix Geisendörfer [mailto:[EMAIL PROTECTED] *Sent:* lundi 5

[jQuery] jquery flash sIFR fla file

2007-03-04 Thread Sam Sherlock
I am playing around with the flash plugin for jquery trying to get the sIFR woking within a site. I have downloaded the fla file but it does not open in my flash 7 http://jquery.lukelutman.com/plugins/flash/jfr.fla I was hoping that either Luke or someone might be able either send me a fla

Re: [jQuery] Bind event to radio button group

2007-03-03 Thread Sam Collett
On 03/03/07, Brad Perkins [EMAIL PROTECTED] wrote: Josh, After further testing this doesn't appear to work with IE6 (or Safari). Your technique for binding the radio buttons works in the main page, but it appears that any javascript returned via the ajax call is ignored by IE6 (and also by

Re: [jQuery] JS Source code Formatter - Anyone know of any good ones

2007-03-02 Thread Sam Collett
On 02/03/07, harningt [EMAIL PROTECTED] wrote: Tsz Ming WONG wrote: maybe http://astyle.sourceforge.net/ ? you might need to tweak the settings for javascript. This seems the ideal tool to me, however it completely screws up when dealing w/ function creation.. Ex: /* Desired

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-28 Thread Sam Collett
On 28/02/07, agent2026 [EMAIL PROTECTED] wrote: Well for one, it's 17k packed standalone whereas my heavily modified Thickbox is just 6k packed. Small file size was one of the top reasons Cody made Thickbox in the first place, and it's definately a very important factor for me. Adam It is

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-28 Thread Sam Collett
=plugin.thickbox.iframe.js type=text/javascript/script this would also enable to build more functionalities for specific uses (gallery, zoom, prev/next only apply to images). I just wrote in reply to Sam, that I'm thinking about making TR modular exactly like that. The basis is already there. On the other

Re: [jQuery] Tabs plugin / CSS problem

2007-02-27 Thread Sam Collett
On 27/02/07, Klaus Hartl [EMAIL PROTECTED] wrote: Wilfred Nas schrieb: Klaus, you are right, my fault (too lazy with copy and pasting as it is still early) but Doctype does matter when rendering, see http://www.quirksmode.org/css/quirksmode.html Yes I know - thats why I pointed

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-27 Thread Sam Collett
On 26/02/07, Sam Collett [EMAIL PROTECTED] wrote: On 26/02/07, Klaus Hartl [EMAIL PROTECTED] wrote: Hi jQuerians, I just committed what I would call Thickbox Reloaded alpha version. It may look the same pretty much, but is a complete rewrite. Here's what's new: * Chainable method

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-27 Thread Sam Collett
On 27/02/07, Klaus Hartl [EMAIL PROTECTED] wrote: Alexandre Plennevaux schrieb: Question: will the next version of TB support multiple thickboxes (one on top of the other) ? Ugh. No, at least not yet. To make it most efficient, the window gets created once and is then reused. That said,

Re: [jQuery] problem with edit in place on HTML coding.

2007-02-27 Thread Sam Collett
On 27/02/07, Mark [EMAIL PROTECTED] wrote: i`m trying to edit the whole tag. and i can`t post any samples online.. i don`t have any sites online.. i do have some free subdomains somewhere but i hardly know where i left them :P perhaps in the future.. You could upload them to Google Pages

Re: [jQuery] Another PNG transparency thingy for IE

2007-02-27 Thread Sam Collett
On 27/02/07, Weaver, Scott [EMAIL PROTECTED] wrote: I am currently working on building a blog to house these kinds of code odds and ends. Will ping bing back when it is up. -scott You'll ping the list when you have the PNG blog up then? There seem to be several solutions to PNG transparency

Re: [jQuery] problem with edit in place on HTML coding.

2007-02-27 Thread Sam Collett
it.. :( Perhaps not the best way to do it, but you could try replacing self.revert = jQuery(self).html(); with self.revert = jQuery(self).html().replace(/gt;/g,).replace(/lt;/g, ); Not tested though. 2007/2/27, Sam Collett [EMAIL PROTECTED]: On 27/02/07, Mark [EMAIL PROTECTED] wrote: i`m trying

Re: [jQuery] KICK-BUTT javascript based Zoom feature

2007-02-26 Thread Sam Collett
On 24/02/07, Rey Bango [EMAIL PROTECTED] wrote: Bah, we're used to it Mike. If you would've been out of line, you know I would've just jumped in and impaled you, jQuery-style. ;o) Rey... You mean like this: var rey = $(#rey); if (rey.finds(#mike).is(out of line)) rey.impales({who: #mike,

Re: [jQuery] jQuery.com site Question / Suggestion

2007-02-24 Thread Sam Collett
On 24/02/07, Kenneth [EMAIL PROTECTED] wrote: Seeing as there's a number of quality API helpers and such for jQuery, I was curious if there are any plans to have them added to the site, say perhaps a new sub-section under documentation? I hope they aren't already there or I will feel like a

Re: [jQuery] How can I create a (style) .class dynamically?

2007-02-23 Thread Sam Collett
On 23/02/07, Benjamin Sterling [EMAIL PROTECTED] wrote: well, you can append to the head, example: http://ov-staging.informationexperts.com/e.htm script type=text/javascript $(document).ready(function(){ $('head').append('stylebody{background:#000;}/style'); }); /script This does not

Re: [jQuery] BlockUI like plugin for divs

2007-02-23 Thread Sam Collett
On 23/02/07, Mike Alsup [EMAIL PROTECTED] wrote: Just an issue/small question though, in Safari, the select-tags gets dimmed for just an instant, and then shine through the block, is this a little bug? Thanks for the feedback, Andreas. I'm using a z-index of 500 for the iframe, perhaps

Re: [jQuery] PNGs in IE

2007-02-22 Thread Sam Collett
On 22/02/07, schnuck [EMAIL PROTECTED] wrote: anyone knows of a jquery plugin that fixes PNG transparency in IE 5.5, 6? or any ideas please? tia, s -- There is a plugin here: http://nemoweb.com.au/jquery/IEPNGHack/take3.html ___ jQuery mailing

Re: [jQuery] jQuery API in PDF Format

2007-02-22 Thread Sam Collett
On 23/02/07, Rey Bango [EMAIL PROTECTED] wrote: Hey guys, For all of those that would like to get a PDF version of the jQuery API, Ben Nadal (ColdFusion guru and recent jQuery convert) has offered one up. Visit his post here to see how he did it:

Re: [jQuery] Reference to newly inserted item?

2007-02-22 Thread Sam Collett
On 22/02/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, If I have $(this).parents(div.sidebarToDo).find(td.sidebarText).empty().append('input type=text value= size=10 class=editableItem'); What is the best way to get a reference to the newly created text field? Note that it does

Re: [jQuery] jQuery and Jack Slocum's Ext

2007-02-21 Thread Sam Collett
On 20/02/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: John Resig schrieb: Hi Everyone - Today, we're proud to announce that the jQuery Project and Jack Slocum's Ext Project, have partnered to integrate the amazingly lightweight and powerful jQuery framework with Ext's awesome UI

Re: [jQuery] History Plugin API

2007-02-21 Thread Sam Collett
On 21/02/07, Klaus Hartl [EMAIL PROTECTED] wrote: Chris Ovenden schrieb: Hi All I have searched Google and my archives of this list, and can't find an API for the history plugin. Is there one, somewhere? Thanks! Chris Chris, you'll find the documentation inline.

Re: [jQuery] How to get the ID of the parent node?

2007-02-21 Thread Sam Collett
On 21/02/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, Following up from a question I asked yesterday, I wanted to get the closest parent DIV given an arbitrary nested element. But when I request the .id of that element, i repeatedly get an undefined message, even though this call,

Re: [jQuery] accordion table, instead of an accordion list/menu?

2007-02-21 Thread Sam Collett
On 21/02/07, Kristinn Sigmundsson [EMAIL PROTECTED] wrote: Thing is that even if you have a callback to the slideToggle and set the display property to table-row, it still comes out wierd... maybe a wrapping div is the best solution? I have tried wrapping with DIV's, but they don't seem to

Re: [jQuery] How to get the ID of the parent node?

2007-02-21 Thread Sam Collett
On 21/02/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: ---Original Message--- From: Chris Ovenden [EMAIL PROTECTED] Subject: Re: [jQuery] How to get the ID of the parent node? Sent: Feb 21 '07 16:04 On 2/21/07, SAM COLLETT [LINK: mailto:[EMAIL PROTECTED] [EMAIL

Re: [jQuery] How to get the ID of the parent node?

2007-02-21 Thread Sam Collett
On 21/02/07, Sam Collett [EMAIL PROTECTED] wrote: On 21/02/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: ---Original Message--- From: Chris Ovenden [EMAIL PROTECTED] Subject: Re: [jQuery] How to get the ID of the parent node? Sent: Feb 21 '07 16:04 On 2/21/07

Re: [jQuery] Setting a cookie through Jquery

2007-02-21 Thread Sam Collett
On 21/02/07, Gaston Garcia [EMAIL PROTECTED] wrote: Hi is there a way to set cookies with Jquery? Let's say someone submits a form, I use jquery to process the form through ajax and sends it to php... is there a way to create a cookie with jquery? Maybe in the ajax call I can send the data to

Re: [jQuery] jQuery and Jack Slocum's Ext

2007-02-21 Thread Sam Collett
On 21/02/07, Mark D. Lincoln [EMAIL PROTECTED] wrote: Sam, If you are going to use rich components like those found in Ext, does this matter? I am looking at porting large parts of rich client application functionality to the Web and if a user has scripting disabled, the application

Re: [jQuery] wrapinner with 1.1.1

2007-02-20 Thread Sam Collett
On 20/02/07, Oliver Boermans [EMAIL PROTECTED] wrote: Served? Served what? On 20/02/07, John Resig [EMAIL PROTECTED] wrote: I just got served :-( Dave knows something about jQuery that John doesn't (or he forgot about) ;) It does show that there can be several ways to do the same thing in

[jQuery] Select box plugin update

2007-02-20 Thread Sam Collett
Updated my plugin for removing options from a select box. It now takes a regular expression as well as a string and number. http://www.texotela.co.uk/code/jquery/select/ ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Sites Powered by jQuery

2007-02-20 Thread Sam Collett
On 19/02/07, Rey Bango [EMAIL PROTECTED] wrote: Hey guys, Just a reminder that we're always taking submissions for new jQuery-powered websites. Please submit them to me or Karl Swedberg ([EMAIL PROTECTED]) and be sure to include: - Link - Name of Company - What the site does - The

Re: [jQuery] collapsible menus ~ pixel carnage

2007-02-20 Thread Sam Collett
On 20/02/07, Karl Swedberg [EMAIL PROTECTED] wrote: Ah yes, that's pretty straightforward. One way to do this would be to put Show/Hide inside a span and use the a for the actual link. HTML: ul id=Menu li id=current_cat h3spanShow/Hide/span a href=accessories.htmAccessories/a/h3

Re: [jQuery] Right way to set line-through?

2007-02-20 Thread Sam Collett
On 20/02/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, How do I use JQuery to set the text-decoration of an element with ID id1 to line-through? Thanks, - Dave The following should do it: $(#id1).css(text-decoration, line-through) ___

Re: [jQuery] Test

2007-02-20 Thread Sam Collett
$(discussion).find(subject:Test).lol(); On 20/02/07, Rey Bango [EMAIL PROTECTED] wrote: haha! That made me laugh. hehehe Rey Kenneth wrote: I believe it's supposed to be: $(this).test(); On 2/19/07, *Rey Bango* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: test email

Re: [jQuery] Right way to set line-through?

2007-02-20 Thread Sam Collett
On 20/02/07, Abel Tamayo [EMAIL PROTECTED] wrote: Try this: $(#id1).css(textDecoration, line-through); Remember that when you use the .css function to set a style, it must becapitalized camel-style; that is text-decoration becomes textDecoration and the same happens with backgroundColor,

Re: [jQuery] Flash video chunkyness and strange rendering on Mac Firefox using thickbox?

2007-02-20 Thread Sam Sherlock
I found that displaying flash files in thickBox had performance issues in Firefox and also was too cumbersome for older lower spec machines. I opted for a less complicated solution (displaying the content in pop up windows) - S On 20/02/07, Anna Vo [EMAIL PROTECTED] wrote: I can play flash

Re: [jQuery] Where's the limitQueue plugin gone?

2007-02-19 Thread Sam Collett
On 19/02/07, Gerry Tucker [EMAIL PROTECTED] wrote: Anyone know where the limitQueue plugin has gone? I keep getting a 404. Regards, Gerry Google has it in its cache:

Re: [jQuery] Creating an empty jQuery object

2007-02-18 Thread Sam Collett
On 18/02/07, Danny Wachsstock [EMAIL PROTECTED] wrote: Yehuda: I do know about $('..html/'), but my mother always said Don't hang with those innerHTML kids, you'll learn bad habits. Seriously, I find it very hard to debug the assemble-a-string-and-have-the-interpreter-figure-it-out sort of

Re: [jQuery] Google's Summer of Code

2007-02-18 Thread Sam Collett
On 16/02/07, Sam Collett [EMAIL PROTECTED] wrote: On 16/02/07, John Resig [EMAIL PROTECTED] wrote: Hey Everyone - Google's Summer of Code has just opened up for 2007, and I'd love to have jQuery be a part of it: http://code.google.com/soc/ If you're not familiar with how SoC works

Re: [jQuery] Smooth Scrolling for same-page links

2007-02-18 Thread Sam Collett
On 17/02/07, Karl Swedberg [EMAIL PROTECTED] wrote: On Feb 17, 2007, at 4:36 PM, Joel Birch wrote: On 18/02/2007, at 6:13 AM, Karl Swedberg wrote: ok, now that the smooth scrolling has Klaus's blessing :) ... I thought I'd share some code I wrote to make it happen for all same- page

Re: [jQuery] Bug in Interface Autocomplete SVN

2007-02-18 Thread Sam Collett
On 18/02/07, Peter Vulgaris [EMAIL PROTECTED] wrote: Around line 310 of iautocompleter.js there is a line like this: if (/13|27|35|36|38|40|9/.test(pressedKey) jQuery.iAuto.items) { While keycode 9 is the enter key, the regex there also matches for any other keycode with a 9 in it. I know

Re: [jQuery] Cascading data into text input boxes

2007-02-16 Thread Sam Collett
On 16/02/07, Bruce MacKay [EMAIL PROTECTED] wrote: Hi folks, I have a set of n paired text input boxes (date on; date off). Each is attached to Kelvin Luck's date picker plugin. In most instances, the date off will be 7 days after the date on, and the next date on will be 1 day after

Re: [jQuery] CSS: Wasteful requests when switching input image

2007-02-16 Thread Sam Collett
On 16/02/07, Brice Burgess [EMAIL PROTECTED] wrote: Klaus Hartl wrote: Brice, I think having two images in the HTML source is pretty ugly. I once did an Image image Replacement for inputs with type image. That way you can easily use pure CSS hovers and use CSS sprites to avoid traffic.

Re: [jQuery] Google's Summer of Code

2007-02-16 Thread Sam Collett
On 16/02/07, John Resig [EMAIL PROTECTED] wrote: Hey Everyone - Google's Summer of Code has just opened up for 2007, and I'd love to have jQuery be a part of it: http://code.google.com/soc/ If you're not familiar with how SoC works, Google pays a number of college students to work on an

Re: [jQuery] blocking/skinning div cotents

2007-02-16 Thread Sam Collett
On 16/02/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: You said: Note that the scrollable div in IE seems to often defeat the overlays I've tried, once the scroll bar appears... I believe that to address this, you have to put an iframe in your overlaying div . Other than that, blockUI

Re: [jQuery] Google analytics jquery

2007-02-16 Thread Sam Sherlock
Hi Toby, have you seen this page http://www.google.com/support/analytics/bin/answer.py?answer=33985topic=7292 you can just call urchinTracker(/pagefilename1 ); inside an ajax call. I think you can choose to track via title. Are you getting pages from a db? If so the I would return the data

Re: [jQuery] Target iframe generated by jquery

2007-02-15 Thread Sam Collett
On 14/02/07, 15daysofjquery [EMAIL PROTECTED] wrote: How do I target an element inside of an iframe I've created on the page? In other words, I've used jQuery to create an iframe, and now I need to target all the p elements of the document inside that iframe. I've tried

Re: [jQuery] Custome selectors use : as seperator, which is an official character for id's

2007-02-15 Thread Sam Collett
On 15/02/07, Jason Levine [EMAIL PROTECTED] wrote: It looks like : isn't a valid character for ID attributes. From http://www.w3.org/TR/html401/types.html#type-name : ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]),

[jQuery] bind and unbind after an Ajax Call

2007-02-15 Thread Sam Sherlock
I have links with the class name 'jLink' that update After each AJAX Call I re-run a function named init (which is initially called via document ready) It does work but after two sometimes three clicks it stop working any ideas? this is the unbind / bind is inside that init function function

Re: [jQuery] bind and unbind after an Ajax Call

2007-02-15 Thread Sam Sherlock
-- *From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] *On Behalf Of *Sam Sherlock *Sent:* Thursday, February 15, 2007 4:21 PM *To:* jQuery Discussion. *Subject:* [jQuery] bind and unbind after an Ajax Call I have links with the class name 'jLink' that update After each AJAX Call I re-run

Re: [jQuery] Table striping, speed question

2007-02-15 Thread Sam Collett
On 15/02/07, Brice Burgess [EMAIL PROTECTED] wrote: On 2/15/07, *Angelo Sozzi* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Just a minor (nice to know) question: When stripping multiple tables or lists on a single page $(.stripMe li:even).addClass('alt');

Re: [jQuery] jQuery Nightly Builds

2007-02-14 Thread Sam Collett
On 14/02/07, John Resig [EMAIL PROTECTED] wrote: This is a re-post of a blog post written by Paul McLanahan: http://jquery.com/blog/2007/02/13/jquery-nightly-builds/ Hey Everyone - After much wailing and gnashing of teeth, we now have automated nightly builds of jQuery ready for

Re: [jQuery] Any idea on how to replace select with div

2007-02-14 Thread Sam Collett
On 14/02/07, Agrawal, Ritesh [EMAIL PROTECTED] wrote: Hi, I am wondering did anyone ever tried to create some alternative for selectoption list. I like using select-option as it provides the ability to use keystrokes to change selection. However, I can't change the font color or add new

Re: [jQuery] Setting an image caption width

2007-02-14 Thread Sam Collett
On 14/02/07, Seb Duggan [EMAIL PROTECTED] wrote: Not sure I agree on the title attribute not being suitable, but I see your point on the alt. Nevertheless, I want to change this: img src=/myimage.jpg width=250 height=350 alt=Alt text title=Some text I want to use as the caption

[jQuery] Re-initialize Imagebox after AJAX Call

2007-02-14 Thread Sam Sherlock
I am using AJAX calls to update content, some of this content uses imagebox I am having difficulties getting the image box events to apply to content that has been updated. I have a function that is called after the update has been made, with this code to initialise the imagebox events

[jQuery] Select box manipulation plugins update

2007-02-13 Thread Sam Collett
I have updated my plugins for working with select boxes. I am unable to test in Safari, but there should hopefully be no problems. Tested in IE 7, Firefox 2 and Opera 8.54. Available at http://www.texotela.co.uk/code/jquery/select/ Changes: addOption also replaces options with the same value (so

Re: [jQuery] Accordion trouble

2007-02-13 Thread Sam Collett
On 13/02/07, Jon Ege Ronnenberg [EMAIL PROTECTED] wrote: Hi all. I've just found the Accordion plug-in and it seems pretty straight forward to implement but I get an $(:first-child, this)[0] has no properties in firebug when the page load and the navigation doesn't work. My code is really

Re: [jQuery] Select box manipulation plugins update

2007-02-13 Thread Sam Collett
On 13/02/07, Sam Collett [EMAIL PROTECTED] wrote: I have updated my plugins for working with select boxes. I am unable to test in Safari, but there should hopefully be no problems. Tested in IE 7, Firefox 2 and Opera 8.54. Available at http://www.texotela.co.uk/code/jquery/select/ Changes

  1   2   3   4   >