[jQuery] jquery-modalContent Plugin 0.11 released
<pre>I've released 0.11 of the jquery-modalContent plugin with the following changes: 2006-12-19 patch from Tim Saker <<a href="mailto:tjsaker@yahoo.com">tjsaker@yahoo.com</a>> 1) Keyboard events are now only permitted on visible elements belonging to the modal layer (child elements). Attempting to place focus on any other page element will cause focus to be transferred back to the first (ordinal) visible child element of the modal layer. 2) The modal overlay shading now covers the entire height
[jQuery] setting an attribute... I *thought* this was how to doit...
<!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 text=#000000 bgColor=#ffffff> <DIV dir=ltr align=left><FONT face=Verdana color=#0000ff size=2><SPAN class=421481318-05012007>Chris, it's like this... ;-)</SPAN></FONT></DIV> <DIV dir=ltr align=left><FONT face=Verdana color=#0000ff size=2><SPAN class=421481318-05012007></SPAN></FONT> </DIV>
[jQuery] setting an attribute... I *thought* this was how to doit...
> $(function(){
[jQuery] [Newbie] dynamic text loads...
From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Birgit Pauli-Haack Subject: Re: [jQuery] [Newbie] dynamic text loads... Now I have another question: how to I get the original text back into the <div id="boxtext"> Boxtext. </div> after I unhover from the particular link? Birgit ----- Sorry Birgit I've been busy this week and am just now catching up on email. Take a look at the API docs for the .hover() function. You can pass it two functions, one for over and one
[jQuery] Selectors..
<!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 face="Helvetica, Arial, sans-serif">do jquery selectors support something like 'select every input[@type=text OR password]', eg: $('input[@type=text|password]) ? .. i know i can select them like $('input[@type=text],</font><font face="Helvetica, Arial, sans-serif">input[@type=password]'), but the
[jQuery] Effects question
Hi! A colleague of mine yesterday sent this mail, but didn't arrive to the list. Now I try to resend it. Best Regards, Felhő --------------------------- Hi, I've just started working with jQuery (switched over from prototype) and while I'm enjoying the experience very much, I've run into some problems. I'd like to use some of the basic effects in jQuery, like fade, etc. but I've noticed a rather peculiar "side-effect" (no pun intended) to these functions. When I take a simple element on my page and
[jQuery] Binding a function to a variable (Newbie question)
Hi all, I've just started using jquery, and as you can tell from my blog, very close to just having started javascript, but I'm determined to do things properly. I've written a post function that, for the sake of argument, pops an alert when you submit a form. $(document).ready(function(){ initialiseForm(); }); function initialiseForm() { $("form#fPollX").bind("submit", post()); } function post() {<br clear="all"> alert('hello'); return false; } This works fine. Now I want to abstract it out
[jQuery] tabs plugin - how to start with all content blocks hidden?
I'm trying to use the tabs plugin, but I want all the content areas hidden until one of the tabs is clicked. I tried it with CSS, but the content areas remain hidden even when the tab is clicked. Is there support for this? -- View this message in context: http://www.nabble.com/tabs-plugin---how-to-start-with-all-content-blocks-hidden--tf2925872.html#a8179196 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com
[jQuery] setting an attribute... I *thought* this was how to do it...
<!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 text=#000000 bgColor=#ffffff> <DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><SPAN class=528234813-05012007>> <FONT face="Courier New" color=#000000>The former didn't care about case, while the latter did. </FONT></SPAN></FONT></DIV> <DIV dir=ltr align=left><FONT face=Arial color=#0000ff
[jQuery] Binding a function to a variable (Newbie question)
I've fixed my own problem with a hack of a kind. which is a bit disappointing as I'm not sure what was causing it. I changed the values called to be 'form#fPollX', in order to pass that straight to the $() jQuery function and stripped the id value off the end. In order to pass that value to the function, the function's declared in the bind(), so it's a local variable. Terrible I'm sure - if that's bad practice, I'd love to know why. Cheers, Dan. $(document).ready(function(){ initialiseForm("form#fPollX");
[jQuery] setting an attribute... I *thought* this was how to do it...
<!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've got another simple question. Is this not how you set an element's attribute? [from inside an .each()] $(this).attr("AttributeName", "Value"); I thought that worked... I thought it had worked for me in the past. Is there any reason
[jQuery] best practice OOP for use with jQuery
Hey, folks. I have a question about best practices for writing object-oriented code for use in jQuery. I've been working through understanding this issue and figured the geniuses on this forum would be the ones to ask for advice. I've created an example page with documented source (don't worry, it's a really small example): <a href="http://briz.glyphix.com/js-scope/">http://briz.glyphix.com/js-scope/</a> I'm mostly interested in how to cleanly and reliably deal with scope issues in callbacks. More
[jQuery] IE ajax problems with post instead of get
I'm trying to do a $.getJSON, and in FF it works just marvelous and does a GET request. The exact same code in IE seems to trigger a POST request, which is bad news for us since the java-server side seems to read in the parameter twice (one from the ajax call itself, and one from the form-element), resulting in an array instead of a value for the parameter. So, short question really, anyone else know about this behaviour of IE doing POST instead of GET för ajax stuff? Andreas _______________________________________________
[jQuery] multiple q:s - tab plugin and more
fellows, finally my jquery driven findfreefonts.net site is updated - I had a picture in my mind of how it should look and work with regards to navigation etc (pretty much like how I do regular Windows apps). And I am getting closer. So, flicker free "ajax paging" was the big thing to fix - and not the actual paging but rather getting history (back etc) to work. Now to the questions: First some on Klaus tab plugin and history. ******************************************* I couldn't get the history
[jQuery] Passing formfield value on blur
<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] Passing formfield value on blur
<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] Passing formfield value on blur
<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] My .click() is not working... :o(
<!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">I've got a stumper... well it's a stumper to me. I'm hoping someone here can help me with it. I posted the problem before, but it's slightly different now. In the function to follow, I'm adding a div element to the DOM that represents a "row".
[jQuery] A couple of simple questions.
<!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, How can I tell what class (or classes) an element has? For instance I've got an elements like: <div class="classA classB"></div> <div class="classA classC"></div> How can I select all elements that have classA and ClassB but not classC?
[jQuery] setting an attribute... I *thought* this was how to doit...
> Oddly enough, $(this).attr("ID"); returns the correct
[jQuery] Another simple question...
<!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 text=#000000 bgColor=#ffffff> <DIV dir=ltr align=left><FONT face=Verdana color=#0000ff size=2><SPAN class=296592300-05012007>this.id = 'NewValue';</SPAN></FONT></DIV> <DIV dir=ltr align=left><FONT face=Verdana color=#0000ff size=2><SPAN class=296592300-05012007>alert( this.id );</SPAN></FONT></DIV><FONT
[jQuery] setting an attribute... I *thought* this was how to doit...
<!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 text=#000000 bgColor=#ffffff> <DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><SPAN class=825111200-05012007>Try lowercase.</SPAN></FONT></DIV><FONT face=Arial color=#0000ff size=2></FONT><BR> <DIV class=OutlookMessageHeader lang=en-us dir=ltr align=left> <HR tabIndex=-1> <FONT
[jQuery] Another simple question...
<!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'm posting this again, because I'm not sure it made it through the first time. Sounds like a user error to me! :o) Anyway... </font></font><font size="-1"><font face="Courier New, Courier, monospace">I've got another simple question.
[jQuery] Bug in Nifty Corner Plugin
Hi all, i found a little Bug in the great Nifty Corners Plugin, found at, http://labs.pb-projects.de/nifty/index.html The function same-height works not correct, see the Demo: http://olaf-bosch.de/bugs/jquery/nifty/ Cane we fix that? To know well, correct selektor also does not work, i must this write $(".nav1,.nav2,.nav3,.nav4,.nav5").nifty("same-height"); then this works not $("#container1 div").nifty("same-height"); Uups, whats that!? I do by the copy these code from the demo i testet this $("div").nifty("same-height");
[jQuery] Fake Page Reload
On Thursday, January 04, 2007 9:41 AM fidoogle <> said:
[jQuery] dynamic loading of jquery.js into my web page
> > That looks really dodgy, sorry.
[jQuery] Dynamically removing an inline script block
You could also read in the file using Coldfusion or PHP and remove the script block that way. --------- Andy Matthews Senior Coldfusion Developer Office: 877.707.5467 x865 Direct: 615.627.9865 Fax: 615.467.6249 amatthews@dealerskins.com www.dealerskins.com -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Michael Geary Sent: Thursday, January 04, 2007 4:30 PM To: 'jQuery Discussion.' Subject: Re: [jQuery] Dynamically removing an inline script
[jQuery] dynamic loading of jquery.js into my web page
--
[jQuery] Q: Extending Autocomplete Plugin...
Jörn, That was it. I'm having trouble figuring out the namespace of the plug-ins. Thanks! -Dan
[jQuery] Dynamically removing an inline script block
That would remove all script tags, but it sounds like that won't help. Removing a script tag is just a memory optimization - it may free up the memory that the script's source code took. It won't unexecute the JavaScript code that has already been run, and it won't undo any DOM changes that the code made. There are several ways to delete the DOM nodes that COOLjsTree inserted, of course - I wouldn't know which to suggest without seeing the page. The real question may be whether the COOLjsTree code
[jQuery] New large site using jquery
Hi, Today we released a new version of PokerRoom.com, the worlds 3rd largest poker site. The site has approximately 100,000 - 200,000 visits a day and at peak we serve poker games to 25,000 - 30,000 users. The new front-end platform is running on PHP 5 with the Smarty Template Engine (http://smarty.php.net) for templating, presentation plugins and front-end caching. The old version of PokerRoom used a lot of legacy javascript code and maintenance was hell. In order to avoid this we started looking
[jQuery] break in $.each
> > Andreas, if I remember correctly, the following should work:
[jQuery] Dynamically removing an inline script block
$('script').remote(); Should do the trick right? Assuming that you put that before the call to Mike's function (which probably adds script tags). Andy Matthews Senior Coldfusion Developer Office: 877.707.5467 x865 Direct: 615.627.9865 Fax: 615.467.6249 amatthews@dealerskins.com www.dealerskins.com -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Bruce MacKay Sent: Thursday, January 04, 2007 3:33 PM To: discuss@jquery.com Subject: [jQuery]
[jQuery] break in $.each
Is there a way to break the $.each loops? I'd like it to be $.each(object, function() { break; }); but it doesen't seem so. Andreas _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] slideUp/Down flicker with 1.0.4
Ahh.. This might explain why 1.0.4 breaks a hack I made to fix an IE bug. I create an <iframe> element to "shield" DHTML layers absolutely positioned over select boxes. I was using $().show(10) to force the expansion of the Iframe within the box. This gives the box the exact dimensions required to fit the content. Therefore, it was a handy way to dynamically shape the iframe to match the contents of the CMcontactEmail_msgtxt in the example below. Now that height and width are being cleared after
[jQuery] Stop page scroll when using slideUp/slideDown
What's the best way to prevent a page from scrolling back to the top when using slideUp/slideDown near the bottom of the page? -- View this message in context: http://www.nabble.com/Stop-page-scroll-when-using-slideUp-slideDown-tf2900175.html#a8102742 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Memory game
Has anybody written a game of Memory with jQuery that I can save myself a lot of work from? For those who can't remember how the game was played, here's an aweful example: http://www.queendom.com/mindgames/mindstretching/memory-games/memory-game1/index.html -- Peter Bengtsson, work www.fry-it.com home www.peterbe.com hobby www.issuetrackerproduct.com _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Submit form and load URL (foreground)
Hi there, is there any easy possibility to send a GET request like when sending it via normal html? I am trying to simply load an URL with some GET parameters, but I cannot load it in the foreground, but only with getting a result set which represents the whole HTML code. I already tried via $("body").load("my.aspx"); but this resulted in something like an infinite loop, showing the correct page and then instantly removing it again. Is there something different I could use? Greetings, Arne _______________________________________________
[jQuery] break in $.each
> Would you like an Array iterator that works the way you'd
[jQuery] Fake Page Reload
I'm developing a test site for a major bank using jQuery, but the folks are not used to seeing the screen change so fast. I am using show/hide to show different "screens." They are not happy with the screens showing so fast because they think the web users will not notice the differences in the screens. They've asked me to put in page reloads. In their minds they want the code to go back to the server to request the next page. What I want to do is to fake a page reload. I've tried $("body").hide();
Next Page