[jQuery] window plugin: update
Hi Gilles: Thanks a lot for this plugin but where I can download it and see documentation in how to use in my site? Cheers -- ReynierPM | 5to Ing. Informática Aprendiz de mucho, maestro de poco.
[jQuery] New plugin draft: animateClass
<!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 style="WORD-WRAP: break-word; khtml-nbsp-mode: space; khtml-line-break: after-white-space"> <DIV><SPAN class=765384615-07112006><FONT face=Arial color=#0000ff size=2>Just so you know Paul, the "Go Back" button doesn't work in IE6/PC.</FONT></SPAN></DIV> <DIV><FONT face=Arial color=#0000ff
[jQuery] What is "this"?, I am so confused!!! or JavaScript Tutorial
Well actually I am not that confused any more. Ok, maybe a little at times, but that is nothing new :) I recently found this site that someone here or elsewhere posted for learning JavaScript: http://javascript.crockford.com/private.html which explains closures, this and other stuff, and when you down that you might want to spend some time reading the rest of the site that starts here: http://www.crockford.com/javascript/ -Steve _______________________________________________ jQuery mailing list
[jQuery] memory leaks in jquery
hi all, i just found out that jquery makes my ie6 (winxpsp2) consuming about 250KB more memory each time i hit ctrl+r (reload). i noticed this running the testsuite for my js-stuff (Range & Selection for IE) wondering why ie keeps going slower and slower... (started with 2,5sec. per testrun, after doing it many times i was at about 10 seconds per testrun..) i think before doing anything else like adding new features etc. this kind of bugs have to be removed. as many people will wait until ie7 proofs
[jQuery] New Dev center by Opera
> http://dev.opera.com/articles/view/48/ > > I didn't know that this: > var s = new String('0123456789'); > for( var i = 0; i < s.length; i++ ) { > s.charAt(i); > } > > [is faster than?--dm] this: > var s = '0123456789'; > for( var i = 0; i < s.length; i++ ) { > s.charAt(i); > } > because of the implicit object conversion involved. Optimizations based on Opera may go the wrong way for a majority of users. For example, here are some hard millisecond numbers from a test of that example: Object
[jQuery] error in FF 1.5.0.7 in the unpacked jquery 1.0.3 source
>> I think that should be filed as a bug. Calling end() too much should
[jQuery] jQuery Button Contest Winners!
The votes are in! Here are the winners of the jQuery Button Contest: http://jquery.com/blog/2006/11/07/jquery-button-contest-winners/ Congrats to the winners and thanks to everyone that contributed to the contest! _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Problem with ajaxStart() and ajaxStop() on IE
Hi all, I'm new on this list, please excuse me if the following problem has already been posted before. I am having a problem using ajaxStart() and ajaxStop(). These functions don't work in IE 6 (only in FireFox) and so my "Ajax request" doesn't work too. When I commented these functions, everything worked. My code is: $('#ajax_load').ajaxStart(function() { alert('Test 1'); $('#ajax_load').fadeIn('fast'); }); $('#ajax_load').ajaxStop(function() { alert('Test 2'); $('#ajax_load').fadeOut('slow');
[jQuery] error in FF 1.5.0.7 in the unpacked jquery 1.0.3 source
Hi list, I'm not sure whether this has already been discussed, but in the uncompressed version of the jQuery code my FF-console shows the following error: Fehler: this.stack has no properties Quelldatei: http://www.rsv-arloff-kirspenich.de/javascript/jquery-1.0.3.pack.js Zeile: 191 This line his meant: end: function() { return this.get( this.stack.pop() ); }, This is the jQuery information possibly needed: /* * jQuery 1.0.3 - New Wave Javascript * * Copyright (c) 2006 John Resig (jquery.com)
[jQuery] New Dev center by Opera
Hi all, this is not exactly jQuery related, but there's a new Dev center by Opera, and as one could expect from them there are already some nice articles online. http://dev.opera.com/ Worth reading for example: Efficient JavaScript: http://dev.opera.com/articles/view/48/ -- Klaus _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Also new bug in cookie plugin
Thanks Klaus, I'm using http/1.1, It's my desktop computer, XP system with IIS 5.1, I modify the host file, add a test domain name, for example: 127.0.0.1 demo.com, It seems default cookie plug in execute not correctly. Best wishes, Toby 2006-11-5 -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Klaus Hartl Sent: 2006年11月5日 22:53 To: jQuery Discussion. Subject: Re: [jQuery] Also new bug in cookie plugin Microtoby schrieb:
[jQuery] Hiding and showing table rows
I was hoping to hide and show table rows with a slide effect. But it seems that Firefox needs a display: table-row instead of a "display: block" to make a row appear properly. While IE throws an error at table-row and does fine with block. While I didn't get the slide effect working, I did get the row to appear properly by adding these functions: showRow: function(){ this.style.display = this.oldblock ? this.oldblock : ""; if ( jQuery.css(this,"display") == "none" ) if
[jQuery] Plugin Release: Tooltip
Hi Klaus!
[jQuery] append quicktime plugin
hi, i'm trying to append a quicktime movie using jquery. $("#qtmoviediv").append('<embed src="picture.jpg" qtsrc="rtsp://some.streaming.content/movie.mov" pluginspage="<a href="http://www.apple.com/quicktime/download/"> http://www.apple.com/quicktime/download/</a>" autoplay="true" type="video/quicktime" width="320" height="240" loop="false" controller="false" name="qtmovie" enablejavascript="true" ></embed>').fadeIn("slow", function () {startCounter();}); this is fine for firefox, but .append with
[jQuery] long loading times in safari
Hello, if tried my site the first time with safari for mac and have noticed a very long loading time when loading the page the first time. the internet connection was ok so i don't think that was the problem. also after the first page is load the pageloading goes faster because of caching... only the first load is longer than 3-4 seconds which is much too long, some users have thought the page is not working because they don't see anything until loading is done. I allready use the packer from dean
[jQuery] Is this possible?
<!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="Courier New, Courier, monospace">Hi folks, I have a table that represents a calendar. The user will be able to select multiple dates from the calendar, but cannot select dates in the past. I've written this code before using all JavaScript and what I did was add several additional
[jQuery] Moving elements
Hi there, first of all, thx for the good work on this list. It's not quite common to get help, if you'll ask some experts as a noob on discussion forums and lists. My problem today: I want to move a <div> programmatically with jQuery as it is possible with the script.aculo.us effect new Effect.MoveBy('id_of_element', y, x, [options]); I've tried to find something similiar in jQuery by browsing the list and the documentation, but was not able to find anything like this. But sometimes I'm kinda blind
[jQuery] jQuery Button Voting is Almost Over
Hi everyone, We've racked up a tremendous amount of votes but the polls are still open. Be sure to go to: http://jquery.com/blog/2006/11/06/vote-for-the-jquery-button/ and get your vote in for the new jQuery button. Remember, the polls will be closed Monday 11:59pm (EST, GMT -0500). So get your voting in now - and make your decision count! _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] (no subject)
<div><font face="Arial" size="2">why doesn't this work:</font></div> <div> </div> <div><font face="Arial" size="2">$('#text-field').val(<a href="http://this.name">this.name</a>);</font></div> <div> </div> <div><font face="Arial" size="2">when this does:</font></div> <div><font face="Arial" size="2"> </font></div> <div><font face="Arial" size="2">$('#text-field).click( function() { alert(<a href="http://this.name">this.name</a>); } );</font></div> <div><font face="Arial" size="2"> </font></div> <div><font
[jQuery] stripping out tags...
Hi there... I was about to ask how to strip a tag from the DOM. For example we have this: <div id="someId"> <label for="someFor">some <span>text</span> here</label> </div> I want to remove the <label> tag and preserve what it contains. But while I was writing my question, I came up with this: jQuery.fn.stripOut = function (el) { $(this).each( function(){ $(this).find(el).parent().html(($(this).find(el).html())); }) } so we can do: $("#someID").stripOut("label"); This will produce: <div id="someId">
[jQuery] jquery vs safari vs overflow:auto
<html 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)"> <o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags" name="City"/> <o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
[jQuery] this.name
> why doesn't this work:
[jQuery] this.name
why doesn't this work: $('#text-field').val(this.name); when this does: $('#text-field).click( function() { alert(this.name); } ); ? did i find a bug? also: what does 'this' refer to? the jquery object, right? _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] return this.each
> From: Simon Corless
[jQuery] Scrolling to the bottom of a page
I think this has nothing to do with CSS... Look, if you have content on a page, which will grow in the direction of the bottom, than you get a large range to scroll. JQuery should scroll automaticly at the lowest point of the page ( to the bottom ). If the user wants to read something again, let me say in the middle of the page, then he should be able to scroll to the position. Am 6.11.2006 schrieb "Bryan Buchs" <bryan@bryanbuchs.com>: >Sounds like you need CSS help, not jQuery help. > >Try googling
[jQuery] Scrolling to the bottom of a page
Okay... That's a beginning... But I want to make a chat. So if you scroll up and already down, it should "fix" the bottom, when the scroll bar is bottom-most. Any idea? Am 6.11.2006 schrieb "Sean O" <seanodotcom@yahoo.com>: > >Interface's ScrollTo should work nicely (and aesthetically) for that: >http://interface.eyecon.ro/demos/ifxscrollto.html > >http://interface.eyecon.ro/ > >________ >SEAN O > > > >sd-11
[jQuery] Unicode (I love Unicode)
> Nabble doesn't nibble at my nybbles. (IE they don't mess with
[jQuery] Unicode (I love Unicode)
Andy, it's just unicode... your e-mail and your web browser don't do unicode right.... what kind of programs and system are you using? I thought XP did UNICODE EVERYWHERE... are there fonts missing on your system? Is it an add-in? On my macs it all just works. I've noticed that some PCs show my e-mail name as (J)(a)(k)(e) instead of Ⓙⓐⓚⓔ (pretty circled letters from the netherworld of utf), but I think that is just a bad font choice, my signature is a combo of my name in hebrew, english, and some
[jQuery] Unicode (I love Unicode)
--
[jQuery] stripping out tags...
> > <div id="someId"> > <label for="someFor">some <span>text</span> here</label> </div> > > I want to remove the <label> tag and preserve what it contains. > But while I was writing my question, I came up with this: > > jQuery.fn.stripOut = function (el) { > $(this).each( function(){ > $(this).find(el).parent().html(($(this).find(el).html())); > }) > } How about an .unwrap method to do the opposite of .wrap? jQuery.fn.unwrap = function (el) { return this.each( function(){ $(this.childNodes).appendTo(this.parentNode);
[jQuery] Plugin Release: Tooltip
> From: Paul McLanahan
[jQuery] Plugin Release: Tooltip
> It doesn't behave the same as a standard tooltip, though. Tooltips don't
[jQuery] Parsing XML
<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=windows-1250"> <meta name=Generator content="Microsoft Word 11 (filtered medium)"> <style> <!-- /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0cm; margin-bottom:.0001pt; font-size:12.0pt; font-family:"Times New Roman";} a:link,
[jQuery] IE and the escape key triggering a hide action
I just came across something in IE, that I hadn't noticed so far: It seems that the escape key triggers some action by default: Say you have a link which on click opens a form via slide down. If you then press the escape key, the form slides up again... Is it just me or did someone else notice that as well? Just wondering if it's Plazes specific due to my style of coding. For example have a look at the http://plazes.com homepage (sorry, this is no advertise): There's a login link in the upper right
[jQuery] Plugin Release: Tooltip
Ah...IE has even more weirdness for this issue. Now, when I follow those steps in IE, it actually displays the name of the IMAGE in the tooltip. <!----------------//------ 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 Andy Matthews Sent: Monday, November 06, 2006 9:12 AM To: jQuery Discussion.
[jQuery] Plugin Release: Tooltip
I just tested the demo page with FF 1.5.0.7 and it works great, but there's an oddity that I wanted to tell you about. Loading the page from scratch and all of the tooltips work as advertised, but when I mouseover the 3rd yahoo link (link to Yahoo2), then click the "Tonus" image, the tooltip is now empty. I can recreate it every time with those steps. Furthermore, it appears that you can also get the same results with other steps, but the ones I listed will work for you. <!----------------//------
[jQuery] isNot
jQuery has an 'is' method to see if a current selection matches an expression. There does not seem to be a counter part (not does this but returns a jQuery object, not a boolean). Perhaps there should be isNot? Untested: jQuery.fn.isNot = function(expr) { return expr ? jQuery.filter(expr,this).r.length < 0 : true; } _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Plugin Release: Tooltip
I get an error in IE6/PC on your demo page. <!----------------//------ 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 "Jörn Zaefferer" Sent: Monday, November 06, 2006 3:20 AM To: discuss@jquery.com Subject: [jQuery] Plugin Release: Tooltip Hi jQueryians! I actually managed to release my first official
[jQuery] Plugin Release: Tooltip
<!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 text=#000000 bgColor=#ffffff> <DIV><SPAN class=312230715-06112006><FONT face=Arial color=#0000ff size=2>That's the one I'm getting.</FONT></SPAN></DIV> <DIV> </DIV> <P><FONT size=2><!----------------//------<BR>andy matthews<BR>web developer<BR>certified advanced coldfusion programmer<BR>ICGLink,
[jQuery] Parsing XML
<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=windows-1250"> <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>
Next Page