[jQuery] ** How to unsubscribe?
Hello For the life of me I can see how to unsubscribe to the discussion emails. It's rather overwhealing for my inbox. I would rather vist the site to view the archives now. How can I unsubscribe? Thanks ... Terry _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] JSLint considered harmful (RE: IE fails on $.eval)
> From: Mike Alsup
[jQuery] Chaining, and hide/fadeOut
I'm trying to fadeOut an object and then remove it when done fading. When I try combining the effects, the fadeOut doesn't seem to show. Neither of these show a fade effect. $("#obj").fadeOut("normal").remove(); OR $("#obj").hide("normal").remove(); This doesn't work either: var x=$("#obj"); x.fadeOut("normal"); x.remove(); Getting rid of remove() shows the fade effect. I think what's happening is that the remove() kicks in before the fade effect has completed, making it look like it's not fading
[jQuery] size() bug on Mac
Hi all, When i do this : $("a.thickbox").filter(".thumb").size(); Firefox & IE return 13, thats OK But Camino and Safari return 10 and dont apply effect to links 10->13 ! This is ths same code, generate by a for() in PHP. Thx you, and cheer for jQuery !! Florian _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] live grid
Is anyone working on something like this as a plugin for jQuery? http://openrico.org/rico/livegrid.page -- ||||||||||||||||||||||||||||||||||| Will Jessup c. 760 807 0850 _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Do the Basic Effects have problems with padding?
There were several threads about this in May. The core problem is that the value returned from $.css("height") returns the height including padding and borders, but the CSS height value is not supposed to include those. -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Olav Müller Sent: Saturday, June 03, 2006 1:24 AM To: discuss@jquery.com Subject: [jQuery] Do the Basic Effects have problems with padding? Hi, I'm new to jQuery (which you
[jQuery] slideUp() and slideDown() not working?
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> <font size="-1"><font face="Tahoma">Anybody knows why slideUp() and slideDown() aren't working in the SVN code? </font></font> </body> </html> _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] $.fn.dbg() plugin
Here's a little plugin that might be useful. It could be simpler to use, at times, than preparing Venkman for a debugging run. It helped me determine what the x/y coords were for an event by using it like... $(this).dbg(event) ... or obviously inline within a jQuery chain. $.fn.dbg = function(obj) { var buf = ''; var o = obj || this; if (o) { for (var i in o) { if ((o[i] instanceof Function) || (o[i] == null) || (i.toUpperCase() == i)) continue; buf += i + '=' + o[i] + ', '; } } else buf = 'Null
[jQuery] (BUG) IE fails on $.eval
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type"> <title></title> </head> <body bgcolor="#ffffff" text="#000000"> <font size="-1"><font face="Tahoma">I think i found a little buggy :) <b>I got the situation that this code breaks on IE:</b> </font></font><font color="#3366ff"><big><font size="-1"><big><tt>try { $.eval( this.text || this.textContent || this.innerHTML ); } catch(e) { }</tt></big></font></big></font><font
[jQuery] Do the Basic Effects have problems with padding?
Hi, I'm new to jQuery (which you may guess from the fact, that I do not know if this has been reported/discussed before ...) and just recently started to play with it a bit. I have experienced a strange behavior, when I repeatedly hide()/show() or slideUp()/slideDown() an element with a padding. The element is not restored to it's original size but gets bigger every time. Other than removing the padding from my elements, how do I prevent this? -- Thanks, Olav _______________________________________________
[jQuery] New plugin, testers?
Scrolling it fast confuses it and causes it to "lose" some messages, otherwise works fine in Firefox 1.5 on Win2003 Mike ------ Date: Fri, 2 Jun 2006 12:57:04 -0500 From: Robb Irrgang <robb@subdue.com> Subject: [jQuery] New plugin, testers? To: "jQuery Discussion." <discuss@jquery.com> Message-ID: <381175C4-CC24-493F-A0A8-D8B07791F874@subdue.com> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Hi all. I'm working on a quietly degrading custom scrollbar libary that, unlike every
[jQuery] Interface Sortables - Two Separate Lists?
Also, I'm getting IE to crash (say that the page cannot be displayed) on this code: $('#homeleft').Sortable( { accept: 'homepagesort', helperclass: 'sorthelper', handle: '.handle', fit: true, onchange: function(s) { serial = $.Sortserialize('homeleft'); alert(serial.hash); } } ); Seems to work fine in Firefox (other than it being mixable with another sortable). I'm just sorting divs with text inside of them. -Brandon
[jQuery] New plugin, testers?
Hi all. I'm working on a quietly degrading custom scrollbar libary that, unlike every other scrollbar lib out there, would actually support mousewheels to scroll. Before you threaten to cut off my head, my original take on this was "let's see if it's even possible" aka "because I can". Currently, I'm seeing it as something that'd help you integrate an item into a layout only when OS scrollbars would make it stick out like a sore thumb - not to overtake the whole UI. Although that could be fun. Now,
[jQuery] Custom Borders Plugin
> This is the closest to what I am looking for:
[jQuery] Tooltips
Hello, Sorry I French Je utilise Jquery et Tolltip excellent les deux. Q? est il possible de modifier la position Horizontal et Verticale de la bulle aide, avec des coordonnée fixe. Ex. X100 Y100 Ceci en permanence pour tout les popups Merci d' avance Tank you Yvan _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Toggle with fade/slide?
Hi all Just flipping through the docs, I've noticed that there isn't mention of any way to toggle slideUp/Down and fadeIn/Out methods, and there's no (documented) way of finding out an element's "state" (up/down/in/out). I think it would be useful to have something like $().toggle('slide', 'slow'); available. Has anyone done anything like this? Is there a way I can quickly implement something like this? _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] short circuit $().each()
> Won't this potentially break other people's scripts? Yep. At this point I think most jQuery users are on this list so we should at least ask... Is anyone using each() with a function to each() that returns a boolean value? > I still prefer the Prototype technique which allows "continue" as well as "break". The default for each() is continue since nothing happens after the function call. -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of
[jQuery] Custom Borders Plugin
The border.html page looks the same for me in Firefox and IE6. Can you describe what you meant by "does not work"? -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Sorin Ionescu Sent: Thursday, June 01, 2006 11:03 AM To: discuss@jquery.com Subject: [jQuery] Custom Borders Plugin Inspired by the Octupus Engine, by Dragon Labs, I created a jQuery plugin that is more flexible. However, it does not work in IE, and I can't figure out why. Please
[jQuery] In Place Editor?
I saw that the "15 days of jQuery" site is supposed to have an In-Place editor tutorial up soon? Any idea on the ETA of it?
[jQuery] event leak(mozilla) -- a quick fix...
JQuery rocks! I have been playing with for a few days now and have discovered a little leakage that occurs in Firefox. I always have the "Leak Monitor" extension enabled during development and it is quite annoying to get a leak notice every page reload. I found the source to be from a DOM 2.0 event that is registered for $.ready() if it looks like DOM 2.0 events are supported. BTW: I get this leak every time I load a new page just about anywhere on the JQuery site or any place that is using the JQery-based
[jQuery] hide/show issues
I've come across two problems with show/hide, which only materialize in FF. IE appears to work fine. 1] Documented already, but the discovered solution doesn't work in all cases. Repeated calls to show/hide result in lines being added to the show/hide block. Solution is to add .css("height","auto"). This works for DIV blocks, but only partially for FIELDSET blocks, where a single line is added, but not accumulated. 2] Repeatedly clicking show/hide between two DIVs results in the first DIV adding
[jQuery] SVN update! (important, plz read!)
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type"> <title></title> </head> <body bgcolor="#ffffff" text="#000000"> <font size="-1"><font face="Tahoma">I've made some improvements on the SVN code. Some of them you've been waiting on! --------------------------------------------------------------------------- $.fn.formValues; ---------------------------------------------------------------------------
[jQuery] Would you consider making jQuery available under the GPL?
I note in this thread http://jquery.com/discuss/2006-April/000623/ that jQuery was relicensed last month from CC to "MIT". The "MIT" license is very permissive and so presents few barriers. However, several developers with the Drupal content management system http://drupal.org are very impressed with jQuery and interested in the possibility of using it, and our policy doesn't allow code with non-GPL licenses in our packages (see http://drupal.org/node/66113). Copywrite owners are free to license
[jQuery] Source Compression Script/Tool?
I'm curious as to the script/tool used for source compression? Cheers, -Jonathan _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Finding Parent DOM element
Is there yet an easy way to find a matching parent element using jquery methods? My example is that I have a form with several fields and several buttons, one being the reset button. When I click the reset button, I want a way to find the parent form element, so I can go through the inputs and restore their original background-color, or other properties. I would just reset all form elements, except that this page has a form on each tab and I only wish to reset a single form. Any ideas? I'm thinking
[jQuery] json plugin..
I've been playing with the json plugin for jquery ( http://mg.to/2006/01/25/json-for-jquery ). It says that the callback is called with this setup as the html element where it was applied, but I got the window object instead. Someone tested it successfuly? Thanks! _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Appending rows to table in IE broken
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"> <head> <meta http-equiv=Content-Type content="text/html; charset=us-ascii"> <meta name=Generator content="Microsoft Word 12 (filtered medium)"> <style> <!-- /* Font Definitions */ @font-face {font-family:"Cambria Math"; panose-1:2 4 5 3 5 4 6 3 2 4;} @font-face
[jQuery] Slightly OT: JQuery enabled service
I thought maybe someone likes to watch JQuery in action. We have recently started to switch http://webride.org/ over to JQuery and are very happy with it. I.e. click on "Login" in the upper-right to see some JQuery magic. Or, maybe more interesting: 1. open: http://webride.org/discuss/split.php?uri=http%3A%2F%2Fjquery.com%2F 2. click on "Add tags" > "Top tags" To see heavy usage of JQuery. Especially the concept of chainable methods has helped us a lot and was very handy to use, during our migration.
[jQuery] problems with slideDown and a new row
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"> <head> <meta http-equiv=Content-Type content="text/html; charset=windows-1255"> <meta name=Generator content="Microsoft Word 12 (filtered medium)"> <!--[if !mso]> <style> v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);}
[jQuery] Sortable Question
Is it possible to create different sized elements that are sortable, say a default element is "1x1" but I want other modules to be 2x2, 2x3 in size. I built this out, but because of the way HTML floats things, the larger module (2x3) still only replaces a 1x1 element and not 6 small elements like I want it to. Thanks, Will _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] .load does a GET when callback supplied
I've started to make use of the Thickbox script, and notice that it uses .load in this fashion: .load(url, callback) Looking at the JQ source .load performs: 1] a POST if called with just a url 2] a GET if called with a url+callback. 3] a POST if called with url+params+callback I think there's a bug in the first case, since I suspect the intent was that .load perform a GET when called with just a url. The bug could be fixed by: changing: if (o !== null) { to : if (o && o !== null) { In my case I
[jQuery] AJAX Reload-less Form Submission
I've been trying to work out a simple way to just pass a few form inputs as POST variables to an external PHP file that dumps it to a database, but am having particular trouble trying to get anywhere with a few different methods. Is there a simple example of this posted anywhere? I can't seem to find any solid documentation on seralize, how to pass form elements to .post, nor get the .fn.form() plugin as shown on http://markc.renta.net/jquery/ to work right. I'm 0 for 3 so far, unfortunately. Otherwise
[jQuery] Using $() selector with iframes
I'm trying to use $() jQuery selector to select divs of the parent of an iframe within of this. example $("#div",parent).method but $("#div",parent).size() is allways 0. How I can access to parent divs ?? _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Tooltips
hi there, I made a small script that generates tooltips for elements that have 'title' attribute. try it http://www.eyecon.ro/interface/tooltip.html _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Positioning and Sizing elements
I've been playing with positioning an iframe under a div to ensure the div appears over SELECT lists in IE. In doing so I learned a number of JQ things: 1] The $.css(x, "height") and $.css(x, "width") functions appear to return incorrect values. Refer to this test page http://solidgone.com/jquery/test_div.html. Click the link, and see the blue bordered iframe is larger than the red bordered div. The div is set to 50px, yet the .css function returns 52px. 2] I had to provide units for height and width
[jQuery] In Place Editor?
I'm trying to move all of my Prototype / Scriptaculous code over to jQuery but one thing that I can't figure out how to do is in-place editing. That is, you can click on some text and it turns into an edit box that, when submitted, sends the results to another script (via AJAX). Has anybody taken this on yet? Thanks! _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] html() slightly broken
Hi all, I think the html() method is slightly broken. The documentation says: "If you provide no parameter to the html() method it will return the innerHTML of the first element." If you have only one item as result in your query, for example: $('em', this.parentNode).html(); // $('em', this.parentNode).size() == 1 everything is ok, but if there are more elements, html() returns an object and not the first element's innerHTML. I ran into errors a few times now because of that. Just thinking loud:
[jQuery] document.location.search
Hello! Does someone used document.location.search to add variables to page address when using AJAX? I think this could be very usable when we use AJAX to load some content to our page (for example news or sub pages). When I try to: $(document.location).set('search','?something=1'); or document.location.search = "?something=1"; My page starts to refresh and I'm getting this error: r.getResponseHeader("content-type") has no properties Any idea? Regards _______________________________________________
[jQuery] $.tabs - disabling for printing?
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> <font size="-1"><font face="Helvetica, Arial, sans-serif">Hi guys I'm trying to do a print css stylesheet for one of our sites which uses the $.tabs() plugin. When I do a "print preview", I can see the tabs are still there. This is causing me some bother, as product information is on the second tab while
[jQuery] svn access for plugin development
Hi! I think this topic was discussed earlier? Personly i think this would be an excellent idea, and it would be great to have all written plugins in one place. John: I know that your busy, but this feature to the jQuery svn would be great! Or perhaps we could register a projects at freashmeat.net, sourceforge or similar, for the plugin development side of jQuery? Best regards Christian _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
Next Page