[jQuery] Looking for a Linux Webadmin listserv
I don't mean to be too off-topic, but I've been looking for a listserv similar to this one as a resource for webadmins... specifically for administering Linux servers. Anyone know of such a list? _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] AJAX > xml > new Option
Hey, it's my 1st time using XML so i cant manage doin this: $.post("get_cli.cfm",{ status:"singles" }, function(xml){ var id = $("id",this).text(); var nome = $("nome",this).text(); $("#test").html(id + nome+" "); }); } //firebug response: <clientes> <cli><span style="font-family: monospace;"> </span> <id>284</id><span style="font-family: monospace;"> </span> <nome>Maria Villani Bezerra Bessa Uchoa</nome><span style="font-family:
[jQuery] Magazine Typo corrections
With the exception of the semantic issues, I have corrected the errors that have been reported. The updated issue (which also has several other small improvements) can be downloaded at <a href="http://www.visualjquery.com/magazine.html"> http://www.visualjquery.com/magazine.html</a><br clear="all"> -- Yehuda Katz Web Developer | Wycats Designs (ph) 718.877.1325 _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] TableSorter Preview: Filtering.
Hi All! I have been working hard to get filtering into the next release of TableSorter. So i have put up a "rough" demo of how it will work. The demo is located here: http://motherrussia.polyester.se/pub/jquery/demos/filter/filter-demo.html In the full release filtering on dates will work and there will be an option to apply text filtering on all columns, more of a search function for tables. Feedback would be appreciated. Best regards Christian Bach _______________________________________________
[jQuery] Parents()
Bug in the API docs: the parents() description says ancestors() instead of parents(). And on that subject. I have a button in a table and I want to climb up the dom until I hit the TABLE node. So I have: var oTable = $(this).parents("table"); What is the xPath way of doing the same thing? Thanks. :) Glen _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] jQuery Docs - XML
Currently I am usign the jQuery Docs XML file found on the API page (http://jquery.com/api/) for generating an XML file (for use with Programmers Notepad 2). However, I notice that the version of jQuery is not included. Perhaps it would be useful if this (and the SVN revision) was included? It would make generating documentation (and other files) better as you can indicate what version it is applicable to. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] No more IE6 background-flicker!!!
Hi guys, I've seen this interesting post on the Ajaxian forum today: http://ajaxian.com/archives/no-more-ie6-background-flicker http://misterpixel.blogspot.com/2006/08/title-well-its-done-my-ie6-background.html Which gives me this jQuery implemention, which i have added to my base jQuery init code! $(document).ready(function() { // Fix background image caching problem if (jQuery.browser.msie) { try { document.execCommand("BackgroundImageCache", false, true); } catch(err) {} } }; I hate to tell you
[jQuery] Visual JQuery Magazine in Ajax Developer's Journal
Great job Rey!! <!----------------//------ 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 Rey Bango Sent: Tuesday, September 26, 2006 10:02 AM To: jQuery Discussion. Subject: [jQuery] Visual JQuery Magazine in Ajax Developer's Journal I've been talking to my good friend Rob Gonda for some time
[jQuery] Magazine Typo corrections
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=iso-8859-1"> <META content="MSHTML 6.00.2900.2963" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=734493215-26092006><FONT face=Arial color=#0000ff size=2>I'd be happy to help you out Yehuda. I could even shoot it past my wife...she does editing duties for a travel book writer who recently released a new book.</FONT></SPAN></DIV> <P><FONT size=2><!----------------//------<BR>andy
[jQuery] Magazine Typo corrections
What's more important? Professionalism or tweaking people's noses? <!----------------//------ 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 Dan Atkinson Sent: Tuesday, September 26, 2006 4:59 AM To: discuss@jquery.com Subject: Re: [jQuery] Magazine Typo corrections I would have just ignored the
[jQuery] Visual JQuery Magazine in Ajax Developer's Journal
I've been talking to my good friend Rob Gonda for some time about JQuery and all the goodness it provides. Well Rob, who is the Editor-In-Chief at Ajax Developer's Journal (http://ajax.sys-con.com/), has posted about Yehuda's new magazine in his blog: http://www.robgonda.com/blog/index.cfm/2006/9/26/New-Online-Ajax-Magazine and that entry will also soon show up on the front page of the Ajax Developer's Journal! In addition, he's asked me to do a quick write-up about JQuery for an upcoming issue!
[jQuery] Suggestion: add iframe hack to core jQuery
Hi, I was thinking that due to it being such a common problem, I'd like to suggest adding the iframe hack for IE to the jQuery core. (To hide <select> elements beneath a positioned element) The plugin below appends an iframe with the necessary css so that you don't need any messy hacks in your normal CSS stylesheets. I've made use of IE's CSS expression() to resize the iframe to match the parent element - the previous suggestions of 3000px caused select's to the left or below to disappear. I've only
[jQuery] Is $(document).ready() broken in IE?
In my old revision of jQuery $Date: 2006-05-02 12:03:07 -0700 all works OK but I downloaded the new revision 1.0.1 and in this simple code: $(document).ready(function(){ userlang = navigator.language? navigator.language : navigator.userLanguage; alert(userlang); }); In IE not works, alerts undefined or simply no alerts (window.onload works) _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Ajaxian Picked up JQuery Magazine!
Great job Yehuda!!! http://ajaxian.com/archives/jquery-magazine-started _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Multiple Ready Blocks
> Is it permissable to have more than one
[jQuery] Cool technique
In my editInPlace script, I do:<pre class="wiki">$(editable).animate({opacity: .5}, "normal", function() {$(editable).animate({opacity: 1}, "normal")});</pre>which results in a slow emphasis. I think it works better than the yellow-fade for emphasizing success of an update. What do you guys think?<br clear="all"> -- Yehuda Katz Web Developer | Wycats Designs (ph) 718.877.1325 _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Multiple Ready Blocks
<div>Is it permissable to have more than one </div> <div><font face="courier new,monospace" color="#3333ff">$(document).ready(function() {})</font></div> <div>per page?</div> <div> </div> <div>If it is not, would this be a good workaround?</div> <div> $(document).ready(function() { runGlobalJQueryFunctions(); runLocalJQueryFunctions();</div> <div> return false; }); The reason is that one group is managing a global header and another group is managing the content on the page. Thanks. :) Glen</div>
[jQuery] [PATCH] IE opacity issues
I just added a patch to trac [1] that resolves the opacity issues (at least all the ones I was having thus far) in IE. Unfortunately, I am running behind as it is on my project and don't have time to write tests also (other than my project, which I can't show yet). It would be very nice if a few people could test it out. [1]: http://jquery.com/dev/bugs/bug/204/ Thanks. Brandon Aaron _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Tabs plugin: Rotating tabs
Hi all, several times it has been asked for rotating tabs on my blog. So I put up a demo and thought you may be interested: http://www.stilbuero.de/jquery/tabs/rotate.html The rotation is stopped if you click on one of the tabs. Question regarding this: Should I make another option out of that? In the way, that I could initalize the tabs like the following: $(...).tabs({fxRotate: 5000}); -- Klaus _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Get attribute form $()
I've got this result while debugging with firebug:
[jQuery] Digg push
Sorry to be doing this, but I just want to try one last round of promotion. The Visual jQuery Magazine is about to fall off the bottom of the front page of the Programming Category. To try to forestall that for a bit, please digg it if you haven't already (and ask your friends to do so as well!). You guys have put Visual jQuery on the map. If you can help with one final push, I'd be eternally grateful.<br clear="all"> -- Yehuda Katz Web Developer | Wycats Designs (ph) 718.877.1325 _______________________________________________
[jQuery] how to get the display value of an element?
<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" 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 11 (filtered medium)"> <style> <!-- /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0in; margin-bottom:.0001pt; font-size:12.0pt; font-family:"Times New Roman";} a:link, span.MsoHyperlink {color:blue; text-decoration:underline;}
[jQuery] Get attribute form $()
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=us-ascii"> <META content="MSHTML 6.00.2900.2963" name=GENERATOR></HEAD> <BODY> <DIV dir=ltr align=left><SPAN class=765024704-26092006><FONT face="Trebuchet MS" size=2>Or to stay with jQuery objects:</FONT></SPAN></DIV> <DIV dir=ltr align=left><SPAN class=765024704-26092006><FONT face="Trebuchet MS" size=2></FONT></SPAN> </DIV> <DIV dir=ltr align=left><SPAN class=765024704-26092006><FONT
[jQuery] Get attribute from $()
I've got this result while debugging with firebug:
[jQuery] Form plugin - move to core?
The recent increase in questions about form serialization and form submission makes me wonder the following about why the form plugin is not used more: 1. Is it not meeting your needs? 2. Did you not know it exists? 3. Do you prefer not to use plugins? 4. Something else? I also wonder if its 3 methods should just be added to core. It's been pointed out that core's serialize method is somewhat lacking. The form plugin's serialize method handles every case that I've seen questioned on this list. Unfortunately,
[jQuery] Someone want to subscribe this maillist
I don't know who is the administrator of this maillist, and I received a man his email is leonie.j.price@gmail.com, and he talk with me some jQuery questions, and he said he tried to subscribe this maillist, but failed. So he asked me talk to the administrator that adding him into this maillist, very thanks. email is: leonie.j.price@gmail.com -- I like python! UliPad <<The Python Editor>>: http://wiki.woodpecker.org.cn/moin/UliPad My Blog: http://www.donews.net/limodou _______________________________________________
[jQuery] how to get the display value of an element?
Ah, got it. .css returns the currentStyle Thanks -Geoff -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Will Jessup Sent: Monday, September 25, 2006 4:03 PM To: jQuery Discussion. Subject: Re: [jQuery] how to get the display value of an element? www.visualjquery.com go to .css Will
[jQuery] Ajaxian Framework Results
That's certainly true of me! I didn't use JS at all until I came across jQuery. Now I'm using it _all_ the time. -----Original Message-----
[jQuery] Bug in Droppables and Code Revert
There is a bug in Droppables right now (I have the latest code, and the bug is also present on the Droppables demo page on <a href="http://interface.eyecon.ro">interface.eyecon.ro</a>), where the tolerance : "pointer" isn't working. I debugged a little and jQuery.iDrop.pointer is using the value of jQuery.iDrag.dragged.dragCfg.pointer.x and jQuery.iDrag.dragged.dragCfg.pointer.y whereas jQuery.iDrop.fit and intersect are both using jQuery.iDrag.dragged.dragCfg.nx and ny. I changed pointer to use
[jQuery] editInPlace Plugin
Hey guys, I finally got around to doing a bit of documentation on my editInPlace plugin. You can check it out at <a href="http://jquery.com/docs/Plugins/editInPlace/">http://jquery.com/docs/Plugins/editInPlace/</a> There are two major benefits of my plugin over the "official" one: * Gives "submit" and "cancel" buttons * Supports checkboxes and select boxes<br clear="all"> -- Yehuda Katz Web Developer | Wycats Designs (ph) 718.877.1325 _______________________________________________ jQuery mailing
[jQuery] Cool technique
> From: Yehuda Katz
[jQuery] $().load didn't works ini IE6
> From: Dan Atkinson
[jQuery] $().load didn't works ini IE6
> I need help to make the following code works in IE :
[jQuery] Digg push
Well hopefully, by that time the magazine will have taken off on it's own and it won't be a problem. Good point though. <!----------------//------ 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 Dan Atkinson Sent: Monday, September 25, 2006 11:01 AM To: discuss@jquery.com Subject: Re: [jQuery] Digg
[jQuery] Interface Sortables callback
I'm attempting to use Sortables to sort a list of images but can't get the onchange callback to work. I am able to drag and drop the elements just fine. I've also tried other callbacks like onDrag and tried 'onChange' as well. Here is my code: $('ul').Sortable({ onchange: function(){alert('test');}, accept: 'image', activeclass: 'activedrop', hoverclass: 'hoverdrop', helperclass: 'sorthelper', tolerance: 'intersect', opacity: .7 }); And of course
[jQuery] InnerFade plugin in live site
http://www.politieknieuws.nl/Home/tabid/36/Default.aspx just added the innerfade plugin to the politieknieuws site. Just below the tabs it rotates to the most read newsitems on the portal thanks for the plugin, now all i need to remove is the scrollign photobar with jquery and the site is even faster ( is there such a smooth scroller in jquery allready ) As far as I can see hte carousel only slides per nr of items and it doesnt continue when the end is reaced Armand _______________________________________________
[jQuery] editInPlace Plugin
<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="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 11 (filtered medium)"> <!--[if !mso]> <style> v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);} .shape {behavior:url(#default#VML);} </style>
[jQuery] find 2 different element types but keep dom order?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=us-ascii"> <META content="MSHTML 6.00.3790.2666" name=GENERATOR></HEAD> <BODY> <DIV><FONT face=Arial size=2><SPAN class=124294613-25092006>Hi all,</SPAN></FONT></DIV> <DIV><FONT face=Arial size=2><SPAN class=124294613-25092006></SPAN></FONT> </DIV> <DIV><FONT face=Arial size=2><SPAN class=124294613-25092006>I want to s</SPAN></FONT><FONT face=Arial size=2><SPAN class=124294613-25092006>electing
[jQuery] Visual jQuery Magazine
<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:st1="urn:schemas-microsoft-com:office:smarttags" 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 11 (filtered medium)"> <!--[if !mso]> <style> v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);}
[jQuery] Visual jQuery Magazine
No doubt. <!----------------//------ 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 Rey Bango Sent: Friday, September 22, 2006 4:44 PM To: jQuery Discussion. Subject: Re: [jQuery] Visual jQuery Magazine I think thats what you call the 5:30am proof-reading error. ;o) Rey... Andy Matthews
Next Page