[jQuery] Att: jQuery marketers - JavaScript Library discussion at WASP
Hi all, Just want to point out that there is a post from Mike Davies at http://www.webstandards.org/2006/12/12/reducing-the-pain-of-adopting- a-javascript-library/ which refers to Chris Heilmann's post here http://www.wait-till-i.com/index.php?p=366 and discusses the difficulty in adopting a new JavaScript library. I think it would be good for the relevant people to follow and possibly chime in on. Joel. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Efforts to Convert Folks to jQuery
> I think we should be very careful about be negative about
[jQuery] How to detect an element's class name?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=gb2312"> <META content="MSHTML 6.00.2900.2995" name=GENERATOR></HEAD> <BODY> <DIV><FONT face=Verdana><FONT size=2></FONT></DIV> <DIV><FONT size=2>Dear All,</FONT></DIV> <DIV><FONT size=2>I'm a newbie of jQuery, I got a problem,can anyone give me a hand?</FONT></DIV> <DIV><FONT size=2>My problem is:</FONT></DIV> <DIV><FONT size=2>How can i get the class name of an
[jQuery] js speed tests
Not sure if this is a repost, anyhow: http://www.jorendorff.com/articles/javascript/speed-test.html Will _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] http://www.acko.net/blog/jquery-menu-scout -- jQuery Menu Scout
saw this today, about jquery on <a href="http://drupal.org">drupal.org</a>!<br clear="all"> -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] IE6 fadeIn/fadeOut Problem (css prob?)
Hello, i have a problem with the fadeout/fadein function on IE with jquery.I'm not really sure if this has something to do with jquery, but as far as i figured out it all depends on the "filter: alpha(opacity=XX)" css style wich jquery seems to set with the fadeout/fadein on the IE6. My goal is like a left-pane wich slide's out and back in. To to this i fadein and fadeout 2 different divs. On IE when the panel is open (div #leftpanel) and i close it, all is fine now, it fades correct out and the
[jQuery] Elegant Loading Indicator
<!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.2995" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=156572622-12122006><FONT face=Arial color=#0000ff size=2>Yep...</FONT></SPAN></DIV> <DIV><SPAN class=156572622-12122006><FONT face=Arial color=#0000ff size=2></FONT></SPAN> </DIV> <DIV><FONT size=2><!----------------//------<BR>andy matthews<BR>web developer<BR>certified
[jQuery] .selectedIndex VS jQuery
>> $() is easy to understand as a steroid getElementById(), but to
[jQuery] Elegant Loading Indicator
<!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.2995" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=953300922-12122006><FONT face=Arial color=#0000ff size=2>Why not just create the style for the loading bar in your stylesheet? Then you don't have to do that in jQuery.</FONT></SPAN></DIV> <DIV><SPAN class=953300922-12122006><FONT face=Arial color=#0000ff size=2></FONT></SPAN> </DIV>
[jQuery] Elegant Loading Indicator
On Friday, December 08, 2006 2:13 AM Barry Nauta <> said:
[jQuery] jQuery is now on gotAPI.com!!!
<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" xmlns:ns0="urn:schemas-microsoft-com:office:smarttags"> <head> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii"> <meta name=ProgId content=Word.Document> <meta name=Generator content="Microsoft Word 11"> <meta name=Originator content="Microsoft
[jQuery] Interface: Resizeable question
Does anyone know how to alter the iresizeable.js file to allow multiple resizeable elements on the page? Right now it seems very dependant on IDs, but I need it to be class based. For example I need the handles in each one of these divs to resize the parent div. Right now it just resizes the last element with the resizeable class on the page. <div style="" class="phaseWrapper"> <div style="width: 100px" class="phase draggable resizeable" id="a1"> <div class="resizeE"></div> <div class="resizeW"></div>
[jQuery] AJAX html fragment
Hello all, I'd like to return something like this from an ajax call: <success>[html fragment]</success> or <errors><error>Error message</error>...</errors> Where the html fragment is like <div id="foo"><script type="application/json">{foo: 'bar'}</script><span>Some stuff...</span></div>. I would like to insert the html fragment into my page, but I'm having a really hard time. I think it's a content type issue. When I use text/html, this doesn't work: if($('success', data).size > 0) { /* process success
[jQuery] Memory leak
Hi, Can you help me spot what is causing the memory leak in the following code? If I click "reload", "bind", and "clean" several times, the memory allocation for IE stays still. But if I click in the "reload & bind" and then "clean", several times, the memory allocation keeps climbing. I appreciate any feedback you may have. Thanks, Ethan ================================================================= <html> <head> <script type="text/javascript" src="jquery-1.0.3.js"></script> <meta http-equiv="content-type"
[jQuery] Versioning on Plugins page
Hello everyone, Just wondering if there are any plans to make the to make the Plugins page (jquery.com/plugins) easier to scan and determine what's new and what has been updated without reading every entry? I think having a public "Plugins" SVN repository linked to Trac would be a great start. Just my $0.02, Kevin -- Kevin Old kevinold@gmail.com _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] passing functions
Hi, Firstly - wow, what an amazing piece of work - Kudos! I've been more productive with jQuery in a day than I've been with YUI, and GWT in weeks. Question: how does one pass a function into jQuery, ie given: function foo(){} I want to assign it to the element's onclick handler: $(elem).click (foo) which doesn't seem to work? (note, in this case, I don't want to define foo inside .click (), but just pass it in) thx Dave -- View this message in context: http://www.nabble.com/passing-functions-tf2805241.html#a7826647
[jQuery] Dynamically changing the source of SWF call
Okay... I've come up with code that's "working" in that it changes the source correctly, except that it doesn't change the display. Viewing "Generated source" from within the Dev toolbar in FF shows that the values are changing correctly. I also altered the code slightly to work with an image instead and it works like a charm. Anyone have any ideas? By the way, all paths are correct. ------------ <html> <head> <title> new document </title> <script type="text/javascript" src="jquery.js"></script>
[jQuery] using .load() and getting a 404 response
Hi all, I was wondering about using the .load() method with jQuery. I have some code that works great, however if for some reason the page that is being loaded using .load returns a 404 status, jQuery doesn't seem to recognize this - the code just continues executing. It likely won't be a huge issue as we should be able to have full control over the URL being loaded, but it would be nice if there was some way I could put in some error checking there so as to not throw a JS error if the page doesn't
[jQuery] unload and unload
Hello I'm a bit puzzled by the existence of two "unload" functions in jQuery - one which is the unbinder for "load", and one which is the binder for "unload". Now, the way it's currently implemented, the "unload" event binder will probably simply overwrite the "load" unbinder, if I understand the source correctly? I'm a bit concerned about what the behavior is which the API actually guarantees and which I can rely on? -- Markus Peter - SPiN AG warp@spin.de _______________________________________________
[jQuery] Problem about ajax readyState
<!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.5730.11" name=GENERATOR></HEAD> <BODY> <DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><SPAN class=597444113-12122006>> <FONT face="Times New Roman" color=#000000 size=3>i use jQuery ajax , in some times, the ajax submit was wrong, </FONT></SPAN></FONT></DIV> <DIV dir=ltr align=left><FONT face=Arial color=#0000ff
[jQuery] Trouble with $(expr, context) and iframe documents
> From: Adam Skinner
[jQuery] passing functions
> I had to do something similar today, and I did something like
[jQuery] Another jQuery use sighted "in the wild"
It looks likes screenshot gallery on the Mass Effect site is using Cody's Thickbox. http://masseffect.bioware.com/gallery/ While it seems to be a case of jQuery "tagging along for the ride", it's still nice to see it in use on more and more sites. Karl Rudd _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Interface Sortables and Toggling Lists
I'm having some difficulty getting the Interface plugins' Sortables lib working properly with some toggled lists. I have several lists, one on top of the other, with only a header element visible. Clicking on the header $(el).toggles() the list, making it visible or hidden. If I then add sortability, things start behaving oddly. The LIs can be grabbed, but it seems to take an enormous amount of time to register the grab (and I am developing on a PowerMac Quad-Core G5 with about 4 gigs of RAM, so
[jQuery] Traverse Question
<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-family: times new roman,new york,times,serif; font-size: 12pt;">> Felix Geisendörfer
[jQuery] using .load() and getting a 404 response
<!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.5730.11" name=GENERATOR></HEAD> <BODY> <DIV dir=ltr align=left><SPAN class=269222922-11122006>> </SPAN>I was wondering about using the .load() method with jQuery. </DIV> <DIV dir=ltr align=left><SPAN class=269222922-11122006>></SPAN> I have some code that works great, however if for some reason</DIV> <DIV dir=ltr align=left><SPAN
[jQuery] Traverse Question
> But I bet your markup is not going to stay the same. This is just going to
[jQuery] Simulate getElementById(), was: Trouble with $(expr, context) and iframe documents
> I'm just wondering if we could implement an at least
[jQuery] Jobs and tasks at getJquery.org
Hey folks, I'm pretty happy with the setup over at http://getjquery.org now - I have groups up and running (so working groups can be created), buddy lists for the social element and a few other cool things so go check it out. Apologies for the length of this email also, but I'm typing this as I travel and just commiting my thoughts to email. Below are some on my thoughts on what to do next, you can contribute on-list, or feel free to start editing the wiki (http://getjquery.org/wiki) Now that this
[jQuery] Traverse Question
<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-family: times new roman,new york,times,serif; font-size: 12pt;">>> How is it I can traverse to the first previous element from a given specific <div style="font-family: times new roman,new york,times,serif; font-size: 12pt;"><div>>> element? So if I click on image, I can find from the position within the DOM
[jQuery] InterfaceElements/Sortables - Help with mousedown bindings
<html> <head> <style> P { margin:0px; padding:0px } body { FONT-SIZE: 10pt; FONT-FAMILY:Tahoma } </style> </head> <body>jQuery 1.0.2 / Interface Elements as of approx Nov 25th Firefox 2.0 / IE6 ----------------------------- I have a Sortable <ul>, and it works great, except for the issue below.. I'm trying to have an element within a sortable <li> to not trigger the draggable mousedown. For example: <li class="dragme">All triggers the draggable except for: <span id="dontdragme">this text</span></li>
[jQuery] Traverse Question
<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>Greetings. How is it I can traverse to the first previous element from a given specific element? So if I click on image, I can find from the position within the DOM of that image, the first paragraph that precedes it? Thanks Muchly. </div></div> <hr size=1>Everyone is raving about <a href="http://us.rd.yahoo.com/evt=45083/*http://advision.webevents.yahoo.com/mailbeta">the
[jQuery] Jobs and tasks at getJquery.org
Please help me! I can't get my name off of this mailing list! I have tried to remove at least 10 times. This is my work email. -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of digital spaghetti Sent: Monday, December 11, 2006 2:22 PM To: discuss@jquery.com Subject: [jQuery] Jobs and tasks at getJquery.org Hey folks, I'm pretty happy with the setup over at http://getjquery.org now - I have groups up and running (so working groups can be created),
[jQuery] problem with modalContent plugin
I'm trying to use the Glyphix modalContent plugin and having some issues. The examples on the plugin page work fine, but when I try to use it in my own code -- even a simple example -- I get an error message: e.style has no properties jquery.js (line 389) anonymous jquery.js (line 389) anonymous jquery.js (line 406) anonymous jquery.js (line 346) anonymous jquery-modalConte... (line 42) anonymous jquery-modalConte... (line 135) anonymous jquery.js (line 358) anonymous jquery.js (line 95) anonymous
[jQuery] Trouble with $(expr, context) and iframe documents
> I'm trying to reference an element from within an iframe.
[jQuery] Custom Jquery Builds
<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] Why the old school browser detection
On Monday 11 December 2006 02:50, John Resig
[jQuery] problem with modalContent plugin
> Basically, it seems that my code calls $('#a_div_id').modalContent()
[jQuery] Confused with tablesorter and tablepager plugins
Hey guys and guls! This is my first post in the list, and I'm starting with jQuery, it is an awesome framework, great work developers and my congratulations to the developers. So I'm getting into it and implementing jQuery with a CMS I made, but I had a little problem with tablesorter and tableger plugins. I'm trying to implement the tablesorter and tablepager plugins together[1], but It seems like tablesorter 1.0.3 has dropped the support for the tablepager plugin, and I can't find an actual example
[jQuery] Ajax updating a div
Hi, I am trying to update a div with the response back from an ajax call, the trouble is I don't know what syntax to use or how to make it work properly. $("input[@type=submit]").click(function () { // Firstly I grab the tags from the form I am replacing (upon clicking submit) var tags = $("input[@name=tags]").val(); // Set the loading graphic $(this).parent().html(" \"ajax.gif\" Saving..."); // Then make my ajax call $.ajax({ url: "ajax-updatetags.php", type: "POST", data: "tags=" + tags, dataType:
Next Page