[jQuery] Rev: 259, where is now?
<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:times new roman, new york, times, serif;font-size:12pt"><DIV style="FONT-SIZE: 12pt; FONT-FAMILY: times new roman, new york, times, serif">ok</DIV> <DIV style="FONT-SIZE: 12pt; FONT-FAMILY: times new roman, new york, times, serif"> </DIV> <DIV style="FONT-SIZE: 12pt; FONT-FAMILY: times new roman, new york, times, serif">Now I understand that there is no release newer thah the 249, which is currently
[jQuery] XPath expressions not working
<div>I've been testing and I see many really simple XPath queries that just don't work, or they even break.</div> <div> </div> <div>Is this broken in jQuery? Are they working for somebody? </div> <div> </div> <div>thanks</div> <div> </div> _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] How should :nth-of-type work?
Just canvassing opinions on the :nth-of-type() selector that is in now being tested in the http://www.softwareunity.com/sandbox/JQueryMoreSelectors/ Selectors Plugin (plus other ...-of-type selectors). At face value it would http://www.nabble.com/nth-of-type-not-working-in-some-cases-tf2356344.html#a6571942 appear to be the same as :eq() but I think there's more to it... In a JQuery set containing 3 DIVs and 3 SPANs (#div0, #div1, #div2, #span0, #span1 #span2), I would expect :eq(1) to return only
[jQuery] Full featured form validation library in jQuery?
So I've been using a form validation library called TMT_validator for the last year or so. It's very full-featured (probably a little too full-featured for what I need it for). But it's the best one I've found. I just checked the plugins page for form validation libraries and really only found one or two, but they didn't appear very rich. I'm wondering if anyone has form validation done using jQuery? This is what I'm using now: http://www.massimocorner.com/validator/ Anyone care to rewrite it using
[jQuery] Rev: 259, where is now?
<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:times new roman, new york, times, serif;font-size:12pt"><DIV style="FONT-SIZE: 12pt; FONT-FAMILY: times new roman, new york, times, serif">Thanks Franck, but I feel a dummy now. </DIV> <DIV style="FONT-SIZE: 12pt; FONT-FAMILY: times new roman, new york, times, serif">Where is the link to download this 387 version?<BR><BR></DIV> <DIV style="FONT-SIZE: 12pt; FONT-FAMILY: times new roman, new york,
[jQuery] Fast form serializer function for review
Hello, I've put together a fast form serializer function that I'm hoping can get some review from the list for completeness, bugs, a better name, etc. A previous thread revealed quite a performance issue with the form plugin's existing serialize function when operating on a form with a large number of elements. My plugin sacrifices semantic order for wicked speed. I have a test form with a select menu containing 500 options -- with the current serializer, it takes around 5 full seconds to do the
[jQuery] Fast form serializer function for review
Nice. You could simplify this: var f = ['INPUT', 'TEXTAREA', 'SELECT', 'BUTTON']; $(f.join(','), this).each(function() { to: var f = 'INPUT,TEXTAREA,SELECT,BUTTON'; $(f, this).each(function() { BTW, what do you mean when you say it isn't a plugin? Looks like one to me. :-) -Mike
[jQuery] Rev: 259, where is now?
<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:times new roman, new york, times, serif;font-size:12pt"><DIV style="FONT-SIZE: 12pt; FONT-FAMILY: times new roman, new york, times, serif">thanks, but really I meant "where do I get a Rev >= 259?"<BR><BR> <DIV style="FONT-SIZE: 12pt; FONT-FAMILY: times new roman, new york, times, serif">----- Original Message ----<BR>From: Webunity | Gilles van den Hoven <gilles@webunity.nl><BR>To: jQuery Discussion.
[jQuery] Rev: 259, where is now?
<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:times new roman, new york, times, serif;font-size:12pt"><DIV>I don't know how I got Rev: 259, because current latest is 249. I wandered around but I cannot find a link to it in jquery.com.</DIV> <DIV> </DIV> <DIV>259 works better with IE than 249</DIV> <DIV>For example, 259 let me access tabs in a pre tag, while 249 doesn't</DIV> <DIV> </DIV></div> </body></html>_______________________________________________
[jQuery] Evaluating <script> elements
Hi, I believe there is a flaw in the way scripts are evaluated in the 'load' function. This piece of code is my concern: // Execute all the scripts inside of the newly-injected HTML $("script", self).each(function(){ if ( this.src ) $.getScript( this.src ); else eval.call( window, this.text || this.textContent || this.innerHTML || "" ); }); It doesn't load scripts (with src attribute) in expected way that a browser would. Take the following snippet of html: <script src="fancy-plugin.js"></script>
[jQuery] String Parsing
this might not be jquery related, but i noticed there are a lot of savvy javascript programmers in this mailing list. i want to grab just the filename and extension from the following string: str1="F:\\Test1\\Test2\\Test3\\test.txt"; i want to grab "test.txt" i use this code: file1=(str1.split("\\"))[(str1.split("\\")).length-1]; i was wondering if there is a better way to grab that part of the string Thx for any help -- View this message in context: http://www.nabble.com/String-Parsing-tf2376878.html#a6622443
[jQuery] Started on window class for jQuery
Hi Guys, I have decided to share my subModal class. I started this "lightbox" of me right after i saw the first lightbox for prototype (so i have been coding on this one for almost 1 year now). It is going to have a lot of features and will off-course be shared with you guys. At the current state it basicly is thesame as all other ones out there, but that is going to change. I'll start coding on it tomorrow and hope to show something in a couple (3-4) of weeks. -- Gilles p.s. the window class will
[jQuery] String Parsing
I'm no great js programmer, but that looks about right. <!----------------//------ andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. andy@icglink.com 615.370.1530 x737 --------------//---------> -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com]On Behalf Of Tombo Sent: Tuesday, October 03, 2006 10:22 AM To: discuss@jquery.com Subject: [jQuery] String Parsing this might not be jquery related, but i noticed there are a lot
[jQuery] For Brandon Aaron
Hey Brandon, Looks like you hit it right on the head with your new event unloader: http://www.jackslocum.com/yui/2006/10/02/3-easy-steps-to-avoid-javascript-memory-leaks/ Check out point #2. Rey... _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] input and textarea field resizing
I ran across a plugin that would automatically expand an input or text area field while typing... but I can't seem to find it now. Anyone know what I'm talking about or where its at? Thanks. -- View this message in context: http://www.nabble.com/input-and-textarea-field-resizing-tf2376275.html#a6620356 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Newbie question about document ready statement
Paul, Either is fine; JQuery will happily execute one or more ready statements. If you have multiples, they will be executed in the order in which they are encountered in the code. I personally use a modular approach, since different pages may utilize only a portion of the available functions. My attitude is, why load what isn't used? Of course, YMMV (your mileage may vary). Welcome to JQuery! Kevin -------------- Original message ---------------------- From: "Caton, Paul" <Paul_Caton@brown.edu>
[jQuery] Newbie question about document ready statement
Please forgive what might seem a stupidly basic question but I'm new to jQuery and the tutorials/API doc have not made the answer clear to me: Should you use a separate $(document).ready(function(){ // Your code here }); for each function you write, or do you just have one wrapping "ready statement" and put all your functions inside it? Thanks, Paul Caton. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Bug in "fx"?
When using idrag.js and a created drag with "fx:100" for instance, the current jQuery SVN bails on line 3938 with the error: *z.e.curAnim has no properties* This is the line: z.el.curAnim[ prop ] = true; The lines: if (z.el.curAnim) z.el.curAnim[ prop ] = true; work, but i don't know if that is the correct way to do so. -- Gilles _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Chainable if/else - hot or not?
> FYI, you can already call an extra Function argument
[jQuery] To what extent is XPath actually supported?
<div>I have this simple markup:</div> <div> </div> <div><strong>componentDom.innerHTML</strong> = </div> <div> </div> <div><form action=""> <h1 name="formTitle"></h1> <p name="formInstructions"> <div name="top"> </div> <div name="formContent"> <divname="column"><div ></div></div> </div> <div name="bottom"> <input type="submit" name="defaultButton" value="Submit"/> </div> </form> </div> <div> </div> <div>I'm executing this xpath calls with the following results:</div> <div> </div>
[jQuery] Couple of bugs to squish
Im having trouble with a couple of bugs that seem to be rearing there head on my site redesign. Im having trouble with thickbox crashing IE6 on the following page: http://www.potn.co.uk/~product_info.php?products_id=1011136 http://www.potn.co.uk/~product_info.php?products_id=1011136 On the same page im having trouble with IE6 and IE7 using tabs plugin combined with round corners plugin to make some prettier tabs. In both cases the plugins work like a dream on FF and Opera Ive tried tweaking DTD between
[jQuery] jQuery 1.0.2 RC1
Hi folks, I just uploaded what I like to call jQuery version 1.0.2 Release Candiate 1. Sounds great, eh? It would be great if you could give it a try and report if anything breaks (it shouldn't): http://joern.jquery.com/dist/jquery.js The updated test suite is here: http://joern.jquery.com/test/ According to my tests, FF1.5 and IE6 should fail in 1, Opera in 2 of 242 tests. Test result for IE5.5 and Safari are appreciated. This release contains only one new feature, the ifelse method, see the updated
[jQuery] Modified JTip Plugin
<HTML><BODY style="word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space; ">Hey Everyone,<DIV><BR class="khtml-block-placeholder"></DIV><DIV>As Rey mentioned earlier today (or yesterday), I've been playing around with Cody Lindley's JTip plugin a bit.</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>I would love to have some feedback, suggestions for improvement, etc. on this one. In particular, I'm wondering if the animation stuff is a little overkill. The
[jQuery] Single Value Attributes
I'm all for that. I've always thought it awkward of XHTML to have the value of those attributes be the same as their name. Naturally, you may want to support the existing syntax as well for backwards compatibility. m. -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of John Resig Sent: Monday, October 02, 2006 6:41 PM To: jQuery Discussion. Subject: [jQuery] Single Value Attributes Hey everyone - I stumbled across a point of optimization today,
[jQuery] Interface tooltips flicker in Safari
I dropped these into a site today thinking they were fine, but it turns out there's a seizure-inducing flicker in Safari, depending what options are chosen(position:mouse seems worst). This is also happening in the demo itself in my copy, so I'm surprised it's not listed as a compatibility issue. Is anyone else seeing this, and has a way around been discovered? _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] New Plugin: offset
So I went ahead and released another plugin today that gets the offset (along with some other properties) of the first matched element in the jQuery object. I've gone through a lot of trouble to test this in the different browsers (except Linux) and getting it working in lots of different situations. I believe there might be other methods (or others working on methods) for doing this with jQuery but this is what I've been using and just want to get it out there for others to use if they want too.
[jQuery] New plug-in: quickSearch
Hi guys, I've just released a brand new plug-in called quickSearch, for filter large sets of data. Any comments, criticism (constructive, of course!) and faults would be greatly received! http://rikrikrik.com/jquery/quicksearch/ Thanks -- Rik Lomas http://rikrikrik.com _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] $.ajax(...) not working under IE
Hi, I tried following : $.ajax({ type: 'GET', url: 'php/query/product.php?id=1', success: function(response){ alert(response.id); } }); the php script throws {id:1} (JSON notation data) The alert under IE is 'undefined'; If I alert (response) - 'object' is displayed. I tried many things - eval(response) eval('var p = ' + response); and many more but nothing works... Any ideas ? Thanks in advance. -- View this message in context: http://www.nabble.com/%24.ajax%28...%29-not-working-under-IE-tf2356844.html#a6564807
[jQuery] Input text hover error
Hey, this is what what happens <span style="color: rgb(255, 0, 0);">uncaught exception: Permission denied to get property HTMLDivElement.parentNode </span>and this is the lines. <span style="color: rgb(0, 0, 153);"> $("#searchform #s").hover(</span><br style="color: rgb(0, 0, 153);"><span style="color: rgb(0, 0, 153);"> function(){ $(this).css("backgroundColor","#999").css("border","1px solid #0c9"); }, </span><br style="color: rgb(0, 0, 153);"><span style="color: rgb(0,
[jQuery] Help with the SVN Build Process
> Sam was correct that I wanted the latest SVN version. I also
[jQuery] unsubscribe me please
unsubscribe me please
[jQuery] Help with the SVN Build Process
Hello. I have been building via the build.cmd script (i'm on windows) for some time. However, recently you changed it to be 'unix like' building, with makefiles, and throwing in somethign about java to boot. Needless to say, I'm confused. Can you give a 'linux-build-enviornment' newbie a quick tutorial? Preferably starting from "Okay, I just checked out the SVN code" and going to "and now we have jquery-svn.js", and assuming I don't have make / java / whatever is required? I promise i'll wikify it
[jQuery] September 2006 Archive, alright? or missing some posts?
hmm not sure if its me , but it anyone else see September 2006 archive to be short? as i only see a few posts for the whole Sep archive mail list, that right? hm... i remember seeing more post then that. or am i just co coo of the co co puffs? -- Nilesh B. Patel www.n-bp.com _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] jQuery buggy in IE7
>> var btnCancel = >> $(cloned).find("input.frmSpace").clone().attr("type","button"). >> val(langHash["cancel"]).insertAfter(btnSubmit); > If I remember correctly, IE has issues changing input > types from one type to another Yep. "Remarks: As of Microsoft Internet Explorer 5, the type property is read/write-once, but only when an input element is created with the createElement method and before it is added to the document." http://msdn.microsoft.com/workshop/author/dhtml/reference/properties/type_7.
[jQuery] Interface: small flicker when dropping elements
Hello, since there is no email address at the web site of interface i want to report it here. I'm using the excellent Interface plugin collection and noticed a small flicker when dropping elements (see http://interface.eyecon.ro/ , demo for draggables): elements are invisible for a short time when dropped and then show up again. demo for droppables and slider show this behavior, too. not a show stopper but the ui would "feel" more "solid" without this small flicker. reproducable, ff 1.5.0.7/linux
[jQuery] Help with the SVN Build Process
> From: Joel Birch
[jQuery] FadeIn Question
I am working on a page with some tabs. <a href="http://glenlipka.kokopop.com/jQuery/payroll/AssistedPayroll.htm">http://glenlipka.kokopop.com/jQuery/payroll/AssistedPayroll.htm</a> I didn't use the tabs plugin because it seemed to have so much specific css attached to it and I wanted to keep it simple. The main bug I have is that when you click <span style="text-decoration: underline;">quickly </span>through the tabs, the one that was fading ON persists and gets displayed on the next tab. So I end
[jQuery] jQuery buggy in IE7
<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:times new roman, new york, times, serif;font-size:12pt">Has there been much testing with IE7 RC1? Some of the code I'm writing that uses a lot of slides, fades and cloning works fine simultaneously in FF1.5.0.7, Opera 9.0.2 and Safari 2.0.4 but breaks in IE7 RC1. I'm getting a "This command is not supported." in line 133. I'm not going to dump my source but here's some of the relevant code. It
[jQuery] Community project? Help revive the Lakota language
Hi folks, I apologize in advance for the length of this post, but I have a potential community project which could show off jQuery's chops, and help some people out at the same time. Here's the background: Through my blog I've ended up in contact with someone who is working on helping to teach the Lakota language to kids. Her most recent project was to create a Lakota version of Scrabble, a story which was written up in a few newspaper articles, and which I blogged about (that's how I ended up meeting
[jQuery] contextMenu
I was upgrading one of my older projects today (from jQuery rev 29 !), and noticed that event.contextMenu went away. It looks like it was dropped at 1.0 -- is there a reason it was dropped? Thanks, Andre _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
Next Page