[jQuery] Text reflection
http://msdn.microsoft.com/workshop/samples/author/dhtml/overview/FiltWzrd.ht m and select flip vertical for the filter should work. It would have to be moved down below the original text. There are probably other filters to apply in addition to flip vertical that would make it look better. -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Klaus Hartl Sent: Thursday, December 07, 2006 3:37 PM To: jQuery Discussion. Subject: Re: [jQuery] Text
[jQuery] Efforts to Convert Folks to jQuery
From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Rey Bango Subject: [jQuery] Efforts to Convert Folks to jQuery The reason that I'm posting this is to encourage everyone to be pro-active in approaching the top names in your respective areas and development tools and telling them about jQuery. It seems that many folks either don't know about jQuery or have a misconception about what it does. In my Joe thought it was just some javascript library until he actually saw
[jQuery] Text reflection
IE has it proprietary filters that might be of some help. If you want to limit yourself to IE, that is... http://msdn.microsoft.com/workshop/samples/author/dhtml/overview/FiltWzrd.ht m http://msdn.microsoft.com/library/default.asp?url=/workshop/author/filter/fi lters.asp -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Dan Atkinson Sent: Thursday, December 07, 2006 2:01 PM To: discuss@jquery.com Subject: Re: [jQuery] Text reflection Canvas
[jQuery] Efforts to Convert Folks to jQuery
From: Klaus Hartl Subject: Re: [jQuery] Efforts to Convert Folks to jQuery Jörn Zaefferer schrieb:
[jQuery] Efforts to Convert Folks to jQuery
<!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=765254822-07122006><FONT face=Arial color=#0000ff size=2>I'd have to agree with everything that Glen says, and I'd add something.</FONT></SPAN></DIV> <DIV><SPAN class=765254822-07122006><FONT face=Arial color=#0000ff size=2></FONT></SPAN> </DIV> <DIV><SPAN class=765254822-07122006><FONT
[jQuery] current jQuery version
Hi, can anyone send me the current jQuery.js (complete): i cannot connect to the svn server because the local firewall blocks it. It would be a pleasure, if there could be a nightly build at jquery.com Mathias _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] animation error
--
[jQuery] animation error
Hey is one of those stupid questions: I have the latest version of jquery and I am using this below function: [code] $(".a_organization_port").click( function(){ $("#a_organization_port").animate({ height: 'toggle', opacity: 'toggle'}, "slow"); } ); [/code] and I get this error: [code] e[prop[p]] is not a function [/code] Thanks for any help. -- View this message in context: http://www.nabble.com/animation-error-tf2775928.html#a7743851 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________
[jQuery] Efforts to Convert Folks to jQuery
From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Jonathan Sharp Subject: Re: [jQuery] Efforts to Convert Folks to jQuery jQuery: $("quick elegant javascript") -js ----- THAT has some promise actually... _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Text reflection
<div>Last minute additions. :)</div> <div> </div> <div>Anyone know if a way to make regular html text reflect the way it does for images in reflection.js?</div> <div> </div> <div><a href="http://cow.neondragon.net/stuff/reflection/">http://cow.neondragon.net/stuff/reflection/</a> </div> <div>Glen</div> _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Memory Leak
That appears to take care of it. Thanks for the pointer! --- Brandon Aaron <brandon.aaron@gmail.com> wrote: > On 12/7/06, Jeff Ober <jeffsober@yahoo.com>
[jQuery] Memory Leak
Thanks for pointing that out. It doesn't seem to make a difference, though, when I take it out. The dom objects are still getting left behind. --- Klaus Hartl <jquery@stilbuero.de>
[jQuery] Memory Leak
Daggone it. One more try: $('#question').append($('<a id="yes" href="#" class="answer">Yes</a> / <a id="no" href="#" class="answer">No</a>')); --- Jeff Ober <jeffsober@yahoo.com> wrote: > Version 1.0.3. Also, yahoo rewrote my syntax there a bit - those yes/no > links > should actually be written out: > > $('#question').append($('<a id="yes" href="#" class="answer">Yes</a> / <a > id="no" href="#" class="answer">No</a>')); > > ...hopefully that won't get rewritten :) > > Jeff
[jQuery] Adding an element directly below another one
> Don't know how I managed to forget it: > > http://www.texotela.co.uk/code/jquery/below/ > > ... left -= parseInt(jQuery.css(el, 'marginLeft')) || 0; In IE, jQuery.css(el, 'marginLeft') is often going to be 'auto', not the real left margin size in pixels. The dimensions plugin uses the same parseInt trick for its measurements so switching to it won't help. A true solution for IE is not fun to do. For a poor man's IE debugger, type javascript:alert in the address bar and then follow it with an expression.
[jQuery] Memory Leak
Version 1.0.3. Also, yahoo rewrote my syntax there a bit - those yes/no links should actually be written out: $('#question').append($('<a id="yes" href="#" class="answer">Yes</a> / <a id="no" href="#" class="answer">No</a>')); ...hopefully that won't get rewritten :) Jeff --- Brandon Aaron <brandon.aaron@gmail.com> wrote: > Which version/revision of jQuery are you using? > > -- > Brandon Aaron > > On 12/7/06, Jeff Ober <jeffsober@yahoo.com>
[jQuery] Memory Leak
I'm getting a memory leak in this function, which iterates over a series of items in the object allSections, showing a question set in the object and a yes/no answer, which then get inserted in an array of results. In Drip (memory leak finder for IE), I'm seeing the anchors (with the class 'answer') as leaking. I've tried unbinding them at the beginning of the function, before they are destroyed (with just a $('.answer').unbind('click')), but they still show up as lost dom objects and they show
[jQuery] animation error
> It looks like the problem is with the values you are giving height
[jQuery] Add to Dom
> Change the span to a div and try again - scripting on top of a broken
[jQuery] Add to Dom
Quite simple I hope, I am attempting an inline editing idea. Click a span containing tags and it changes to an input box. The problem I have is I can't access the <form> that is put onto the page. I assume jQuery doesn't know it exists because it's not in the DOM? Do I need to add the form in a special way? I add it by making the <span> .html("<form>...<input type="reset">...</form>") into the form. Then I am trying to access the submit button and the reset button, what is the selector for these?
[jQuery] input type submit onclick handler
I am using jquery 1.0.3. I have a standard form with an input type="submit" which has a onclick handler. This handler may return false depending on certain conditions. This should cancel the form submit process. It worked fine before, but since I included jquery.js the form gets submitted whatever the return of the onclick handler. Is this a known bug or feature ? Many thanks in advance Roger -- View this message in context: http://www.nabble.com/input-type-submit-onclick-handler-tf2763963.html#a7707065
[jQuery] Gallery slideshow
Hello everyone, I have a question , there is a jquery plugin for a multicategory gallery with slideshow ? just like this one : http://www.couloir.org/ Thx. Samad -- View this message in context: http://www.nabble.com/Gallery-slideshow-tf2776024.html#a7744156 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Known issue with fadeTo and IE?
Hi, Is there any known issues with 1.0.3 and the latest svn which should effect fadeTo in IE? On a page I'm building it seems fadeTo is being ignored (although the callback for after the animation is still firing). Of course everything works fine in Firefox... If it's not a known issue I'll attempt to strip down my page to a simplified example for you to look at, Cheers, Kelvin :) _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Gallery slideshow
Wow... That's a nice gallery. <!----------------//------ 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 Samad Sent: Thursday, December 07, 2006 11:53 AM To: discuss@jquery.com Subject: [jQuery] Gallery slideshow Hello everyone, I have a question , there is a jquery plugin for a multicategory gallery
[jQuery] Add to Dom
> $("div.tags").click(function() {
[jQuery] How to get $.css values in px in Opera?
Hi jQuerians, I ran into a bit of an odd problem this morning: $.css returns values in whatever units they were set with in the stylesheet (Safari and Firefox both return values in px regardless of how they were defined). For example: <p style="font-size: 12px; letter-spacing: 1em">Testing, Testing, 123... In Safari and Firefox, $('p').css('letter-spacing') returns the string '12px'. But in Opera, it returns '1em', which isn't useful for calculating anything. As a workaround, I'm inserting an element:
[jQuery] Known issue with fadeTo and IE?
>> OK - I've managed to break the problem down to a simple test case:
[jQuery] Lost
I was going to comment... but then Brian snipered the three points I had. The 'live search' field would be awesome. I have to be honest I tend to use this site a lot to look up jQuery syntax, props on a nice setup. -ALEX -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Brian Miller Sent: Thursday, December 07, 2006 6:27 AM To: jQuery Discussion. Subject: Re: [jQuery] Lost Relax, Anrdea. :) Lots of things get lost in mailing lists. The style
[jQuery] bug in click() after upgrade to svn $Rev: 670 $ from $Rev: 415 $
I use click() on an <a> and inside the callback I return false, to not execute the <a>. when I upgraded to the latest svn version... it seems not to be returning my false, the <a> is invoked and I leave my page. I switched back (to prove my sanity) and it worked again. Is this bug known? _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] The link to jquery does not work
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> <HTML> <HEAD> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii"> <META NAME="Generator" CONTENT="MS Exchange Server version 6.5.7650.28"> <TITLE>The link to jquery does not work</TITLE> </HEAD> <BODY> <!-- Converted from text/rtf format --> <P><FONT SIZE=2 FACE="Arial">The link the previous poster mentioned to</FONT> <FONT FACE="Times New Roman">Javascript Toolkit Comparison</FONT><FONT SIZE=2 FACE="Arial">: </FONT><A HREF="http://www.ja-sig.org/wiki/display/UP3/Javascript+Toolkit+Comparison"><U><FONT
[jQuery] ajax question with javascript on called page in ie6
Thx for your answers, but unfortunately any dynamic script will not be run by ie6. I think this is just an ie6 bug that I will have to live with. Gr Ronald -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Jörn Zaefferer Sent: dinsdag 5 december 2006 22:42 To: jQuery Discussion. Subject: Re: [jQuery] ajax question with javascript on called page in ie6 Ronald Haring - Tripolis schrieb:
[jQuery] Lost
There are two things that I posted here a lot of time ago, but with little to no feedback at all. Well, they are not simple things actually. They hide hours of work and your comments do are a reward. I'll be glad to receive any kind of comments, everything in the range from "I love it" to "I hate you" :-) but please write a couple of words! Am I getting paranoid or is this usual in a discussion list? I don't know, I'm at my first experience in such a thing. I also thought I could have been doing
[jQuery] jQuery tooltip plugin suggestion
> What I mean by that is for it to be next to the element it is
[jQuery] input type checkbox
> On 12/7/06, Erik Beeson <erik.beeson@gmail.com>
[jQuery] input type checkbox
Hi, Perhaps I'm doing something wrong, but when using .val() on check boxes they method seems to always return 'on' disregarding the state of the checked attribute. Is this correct behavior? The tests are made with the latest "stable" release of jQuery and not the svn version. Best regards Christian _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] datePicker changes layout
When I apply the datepicker to an input, it alters the layout of the items in the form. http://www.texotela.co.uk/datepickerbug.php How can I prevent this from happening? _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Setting a global variable
How should I change the following, so those 2 global variables would be filled with information returned by server? Code below doesn't do it. Could this have something to do with asyncronous loading or something? var seed_id; var seed; function createSeed() { $.post('login/login.php',{action:'createseed'}, function(data) { results = data.split('|'); seed_id = results[0]; seed = results[1]; alert(seed_id+"|"+seed); // something like.. 1325|2ae5fa6e56fae5f67a5e }); alert(seed_id+"|"+seed); // undefined|undefined
[jQuery] Unobtrusive class key value
In the name of unobtrusive scripting, I like to store different key/ value things in my class attributes, like <input type="checkbox" class="checkBlur target-input1-input2-input3"> in this case, the checkbox would blur elements with ids of input1, input2 and input3. So I use a dash-separated list to build an array of values, with the first value being the key. Now, you may criticize this behaviour if you like (and really, I'd welcome it) but my main thing here is to ask about a little plugin i wrote
[jQuery] $.post and ASP
> I have to improve an very old asp3 site. Condolences. :)
[jQuery] Simple delete confirmation
I have a table that contains a 'delete' link for each item, eg: javascript: void(0); Delete This is the function that does the work: function deleteState(stateIdVal) { delText = $("#delete"+stateIdVal).text(); if (delText=="Delete") { $("#delete"+stateIdVal).text("Really delete?"); } else { //actual deletion stuff } } I just want to change the link text to that it has to be clicked twice for confirmation. $("#delete"+stateIdVal).text(); retrieves the text without problem
[jQuery] ajax question with javascript on called page in ie6
<!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.2995" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=724582412-05122006><FONT face=Arial size=2>Hi all,</FONT></SPAN></DIV> <DIV><SPAN class=724582412-05122006><FONT face=Arial size=2></FONT></SPAN> </DIV> <DIV><SPAN class=724582412-05122006><FONT face=Arial size=2>I've been trying hard to get the following scenario to work.
Next Page