Re: [jQuery] Proper OOP paradigm using jquery - examples for $.extend() ?

2007-01-17 Thread Christof Donat
Hi, var myObject = new myDerivedClass(37); sorry, this should be var myObject = new femalePatient(37); of course. alert(myObject.age); // alerts 42 alert(myObject.shoesize); // alerts 37 Christof ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] THE List of Sites Using jQuery

2007-01-17 Thread Michael Price
Joel Birch wrote: Strangely, its not working for me now, but is was just before people reported the issue. I am now getting the same error as quoted above. Same here. Regards, Michael Price ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] jQuery fix to IE's lack of 'max-width' CSS support??

2007-01-17 Thread Su
jQMinMax: http://davecardwell.co.uk/geekery/javascript/jquery/jqminmax/ On 1/17/07, tony rasmus [EMAIL PROTECTED] wrote: IE5/6 do not support CSS 'max-width'. I love JQuery, and I wonder if there is a way jQuery can help. Does anyone know of a jQuery fix to IE's lack of 'max-width'?

Re: [jQuery] Interface 1.1

2007-01-17 Thread Dragan Krstic
I have some problems when draggin div contains other divs. In IE6 mostly, but I think it due png filter. Also, open/close animation is not smotth in FF1.5. I'll put demo this days ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] Display error if no INPUT radio is checked.

2007-01-17 Thread Jamal Arbib
hi i am very new to this group i try to display the text of the first TD if no INPUT radio of the second TD is checked. i try this code , it return all TD 's text. $(document).ready(function(){ var error=; $(#myForm).submit( function() { $([EMAIL

Re: [jQuery] what's the difference betweendocument.getElementById('id') and $('#id') ?

2007-01-17 Thread Daniel McBrearty
thanks Aaron, Michael! that makes it clear. On 1/16/07, Michael Geary [EMAIL PROTECTED] wrote: Now that it is laid out in front of me it's pretty obvious, but when you come into the thing cold, these things are not obvious. I think it would be a good idea to explicitly state what the

[jQuery] plugin page on docs.jquery

2007-01-17 Thread George Smith
Page is borked if you're not logged in, edit doesn't work either. error message: Database error A database query syntax error has occurred. This may indicate a bug in the software. The last attempted database query was: (SQL query hidden) from within function MediaWikiBagOStuff::_doquery. MySQL

Re: [jQuery] Getting the optgroup for a select option

2007-01-17 Thread George Adamson
Hi Philip, Perhaps the MoreSelectors plugin will help you: http://www.softwareunity.com/sandbox/JQueryMoreSelectors/ The :option-def selector may be what you need to find option elements that were selected by default (when page loaded). Does that help? George GreyCells wrote: Thanks

Re: [jQuery] Getting the optgroup for a select option

2007-01-17 Thread Blair McKenzie
Thanks a really nice plugin. :D I think option-sel would be better - this would have the correct value on load (the default selection) and would also be correct once the user changed the selection. Perhaps something like this: $(document).ready(function() { $('#MySelect')

Re: [jQuery] JQuery FX set an element to display block in progress ...

2007-01-17 Thread Microtoby
Thanks for your reply, I'm using the fadeTo property. Regards, Microtoby 2007-1-17 2007/1/17, Brandon Aaron [EMAIL PROTECTED]: What property or properties are you animating? -- Brandon Aaron On 1/16/07, Microtoby [EMAIL PROTECTED] wrote: Hi, When using fx of JQuery, animate will set

[jQuery] uncheck and check box using jquery pls help

2007-01-17 Thread Michael Holloway
Hi Rohit Isn't that what you use radio buttons for? hi i am very new to this group acctually i have problem regrading the check box my requirement is like that i need to uncheck one check box which is by default checked and i need to uncheck that while checking another check box thanking you

Re: [jQuery] packing or mod_gzip (or both)

2007-01-17 Thread spinnach
..on my machine, ff2 ~110ms, ie7 ~45ms, opera ~80ms.. netscape produced some strange results, once it's ~60ms, once it's ~150ms.. and i always thought ff was faster with javascript than ie... running win x64 on an athlon64 3000+... on the sites i'm making, since when packing ie7 has issues

Re: [jQuery] Form not submitting

2007-01-17 Thread Mike Alsup
Ahh, that explains it. There isn't a submit button on the form. I have an image that triggers the validation. So... is there a way to get the form to submit without that. Perhaps I should have a hidden submit button? You don't *have* to have a submit button on the form, but you really

Re: [jQuery] jQuery Easing plugin

2007-01-17 Thread Mike Alsup
Anyway, grab it here: http://gsgd.co.uk/sandbox/jquery.easing.php Nice! Great stuff, George. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Form not submitting

2007-01-17 Thread Dan G. Switzer, II
Dave, $(#login)[0].submit(); Unfortunately that doesn't work either. In firebug I get: $(#login)[0].submit is not a function I get the same error with document.login.submit(); The document.login.submit() would only work if you have a form tag w/the name attribute of login. What does

Re: [jQuery] Testing for presence of ID

2007-01-17 Thread Klaus Hartl
Dave Methvin schrieb: $(function(){ $(#second,#first)[0].focus() }); Good job, Dave! Can't think of any way to get that any shorter. $($(#second,#first)[0].focus); It is a reference, right? Oh please! Unfortunately, typeof(element.focus)!= function in IE (and I have scars to prove it)

Re: [jQuery] Proper OOP paradigm

2007-01-17 Thread Dave Methvin
var myObject = new femalePatient(37); alert(myObject.age); // alerts 42 This shows the OOP limitations of Javascript. In a real-world femalePatient object, the age property would be unavailable. ;-) ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] .callMethod( method )

2007-01-17 Thread Antonio Collins
Doh! I just figured out what you were referring to Dave. Instead of using x[method].call( ... ), I could just x[method]( ... ). For some reason, I thought you were suggesting to use .attr() but again, doh! Initially I had stored the method reference in a variable to get the parameter

Re: [jQuery] jQuery Easing plugin

2007-01-17 Thread Gerry Danen
I get a blank page, George. Gerry On 1/17/07, George Smith [EMAIL PROTECTED] wrote: This has now been updated for jQuery 1.1 Thanks to new functionality within 1.1 this is now pretty much just a list of functions for easing. Thanks jQuery team for doing what I was doing, only better, and

Re: [jQuery] THE List of Sites Using jQuery

2007-01-17 Thread Rey Bango
I just tested it out and it appears to be running now. Give it another try guys. Rey... ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Proper OOP paradigm

2007-01-17 Thread Jörn Zaefferer
Original-Nachricht Datum: Wed, 17 Jan 2007 09:14:28 -0500 Von: Dave Methvin [EMAIL PROTECTED] An: \'jQuery Discussion.\' discuss@jquery.com Betreff: Re: [jQuery] Proper OOP paradigm var myObject = new femalePatient(37); alert(myObject.age); // alerts 42 This shows the

Re: [jQuery] THE List of Sites Using jQuery

2007-01-17 Thread Dr. Tarique Sani
On 1/17/07, Rey Bango [EMAIL PROTECTED] wrote: I just tested it out and it appears to be running now. Give it another try guys. Not working for me BTW How about a section on Projects/Products using JQuery? Cheers Tarique -- = PHP

Re: [jQuery] jQuery Powered Sites - Keep the Links Coming

2007-01-17 Thread Sam Sherlock
I am downloading the latest update of PhpMyAdmin from sourceforge and when selecting a different mirror the selection pops up in a thickBox! http://kent.dl.sourceforge.net/sourceforge/phpmyadmin/ -S On 17/01/07, Gavin M. Roy [EMAIL PROTECTED] wrote: Hey Rey, Another site is

Re: [jQuery] jQuery Easing plugin

2007-01-17 Thread Klaus Hartl
George Smith schrieb: This has now been updated for jQuery 1.1 Thanks to new functionality within 1.1 this is now pretty much just a list of functions for easing. Thanks jQuery team for doing what I was doing, only better, and with less code. Saves a great deal of maintenance for me.

Re: [jQuery] jQuery Easing plugin

2007-01-17 Thread George Smith
Exactly right, will update the page to make this clearer. Andy Matthews-4 wrote: If I understand correctly, you call any of the built-in animation effects, but pass in JSON to it? So what was: $('#myDiv).slideUp(slow) Now becomes $('#myDiv).slideUp({duration: 1000, easing:

Re: [jQuery] jQuery Easing plugin

2007-01-17 Thread Klaus Hartl
George Smith schrieb: Not just mine specifically, but yes, that's the functionality I'm now using. Thanks, that is really cool! -- Klaus ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] Docs Wiki Errors

2007-01-17 Thread John Resig
The new wiki area (http://docs.jquery.com/) has been on the fritz lately. I have things cached really well now and the database optimized - please let me know (by replying to this post) if you see any database errors from this point, out. --John ___

Re: [jQuery] Proper OOP paradigm

2007-01-17 Thread Christof Donat
Hi, Sorry, still not right. Any impementation of femalePatient that does not use Math.random for logic is flawed. OK. function Patient(age) { this.getAge = function() { return age; }; this.setAge = function(newage) { age = newage; }; this.and = function(first,second) {

Re: [jQuery] THE List of Sites Using jQuery

2007-01-17 Thread Gavin M. Roy
For the Open Source Projects list, Framewerk (http://www.framewerk.org) is using jQuery On 1/17/07, Rey Bango [EMAIL PROTECTED] wrote: Yep. Everything you mentioned is already in the works. We first wanted to get the list up to show jQuery's reach. Our next step is to enhance it to discuss

Re: [jQuery] Proper OOP paradigm / please be friendly

2007-01-17 Thread Fil
Math.random for logic is flawed. Hello human being, as you probably have noticed, there is an abysmal proportion of 1% of women in Open Source (compared to 10% in commercial software development). We need to think about how we communicate if we want to help this change. Please be friendly and

Re: [jQuery] Proper OOP paradigm

2007-01-17 Thread Christof Donat
Hi, Of course my code was ineficient. Here we go: femalePatient = ( $user == 'Dan' ) ? function(shoesize) {         femalePatientBase.apply(this,[shoesize]); var oldgetage = this.getAge; this.getAge = function() { var a = oldgetage.apply(this,[]);

Re: [jQuery] THE List of Sites Using jQuery

2007-01-17 Thread Sam Collett
On 17/01/07, Rey Bango [EMAIL PROTECTED] wrote: As promised, I've compiled the list of sites using jQuery and have posted them up to the site. You can see the full list here: http://docs.jquery.com/Sites_Using_jQuery I've done my best to get everyone that sent me submissions. If I've missed

[jQuery] How to drag and drop with vanishing draggable?

2007-01-17 Thread tcollogne
Hi, I was trying out some of the demo's on Interface for JQuery. I really like the drag and drop, except for one thing. When you drag an item to the shopping cart and release the mouse button, the draggable is returned to it's original position. What I would like is for the image that is

Re: [jQuery] Slow Selector... What should I do?

2007-01-17 Thread Brian Miller
You can comma-delimit the selector, so you can package up all the td elements you're looking for into one $ function. Also, if you limit your context (to, say, the table in question), it'll help speed things up. mytable = $(#mytable); FlexCells = $([EMAIL PROTECTED] + ShiftDate + ], [EMAIL

Re: [jQuery] jQuery 1.1, Site, Docs, Surprise

2007-01-17 Thread abba bryant
Granted the only layout that breaks is the homepage. Also the code samples with the run functionality overflow their almost white text into the white background when you increase font. I didn't mean to imply it crashed my browser - just that the ability to read the page goes down fast as you

Re: [jQuery] THE List of Sites Using jQuery

2007-01-17 Thread Rey Bango
Hi Sam, Yep, this was already brought up and is in the works. We wanted to first get the list up and then begin exploding it out. Rey... Sam Collett wrote: On 17/01/07, Rey Bango [EMAIL PROTECTED] wrote: As promised, I've compiled the list of sites using jQuery and have posted them up to

Re: [jQuery] Slow Selector... What should I do?

2007-01-17 Thread Dave Methvin
I've got a for loop in which I have jQuery select a different DOM element for each iteration. The code I've got that selects the element is: FlexCell = $([EMAIL PROTECTED] + ShiftDate + ]); So far, it's taking about three seconds to complete a loop of fifteen iterations. Yikes! :o( If

Re: [jQuery] How to drag and drop with vanishing draggable?

2007-01-17 Thread Stefan Petre
tcollogne wrote: Hi, I was trying out some of the demo's on Interface for JQuery. I really like the drag and drop, except for one thing. When you drag an item to the shopping cart and release the mouse button, the draggable is returned to it's original position. What I would like is for

Re: [jQuery] Slow Selector... What should I do?

2007-01-17 Thread Christopher Jordan
Brian, The only problem I see with that is that the dates come from the object that I'm looping over. I maybe should have included the entire for loop in my original post: for(i = 0; i ThisRecordCount; i++){ ShiftDate = {ts ' + CFJS.ListFirst(FlexOrderData.data.SHIFTDATE[i],.) + '};

Re: [jQuery] Proper OOP paradigm / please be friendly

2007-01-17 Thread Christof Donat
Hi, as you probably have noticed, there is an abysmal proportion of 1% of women in Open Source (compared to 10% in commercial software development). We need to think about how we communicate if we want to help this change. Please be friendly and try not to antagonize people who could be

[jQuery] In place editor for jQuery 1.1

2007-01-17 Thread Mika Tuupola
I just released new version of jEditable plugin which works with jQuery 1.1. I would appreciate feedback from people using Windows browsers. Download [1] and test [2] links below: [1] http://www.appelsiini.net/~tuupola/javascript/jEditable/ [2]

Re: [jQuery] How to drag and drop with vanishing draggable?

2007-01-17 Thread tcollogne
Indeed. That does it. Thank you very much. Stefan Petre wrote: tcollogne wrote: Hi, I was trying out some of the demo's on Interface for JQuery. I really like the drag and drop, except for one thing. When you drag an item to the shopping cart and release the mouse button, the

Re: [jQuery] Proper OOP paradigm / please be friendly

2007-01-17 Thread Christopher Jordan
Christof: Well put. Fil: I suggest you get a thicker skin, and learn to realize when folks are having good natured, no harm meant, fun. I personally would *love* to see more women in the field of programming. Maybe then I could get a date. :o) Cheer up. No one meant you any harm. :o)

Re: [jQuery] Slow Selector... What should I do?

2007-01-17 Thread Brian Miller
You can still start off by grabbing your table, and that will make each individual search for a td quicker. mytable = $('#mytable'); ... FlexCell = $([EMAIL PROTECTED] + ShiftDate + ], mytable); Or, even better, you can grab all the td elements that have a dateValue in the first place. mycells

[jQuery] Using JQuery to fix Flash z-index problem?

2007-01-17 Thread rolfsf
I'm using toggle to show/hide a div that partially overlaps a flash movie. Apparently, flash, being active content, will always rise to the top of the stacking order. Since I can see that my div will sit on top until the flash loops or updates, I'm wondering if there is a javascript or jquery

Re: [jQuery] In place editor for jQuery 1.1

2007-01-17 Thread Sam Sherlock
all working in FF2 IE6 on windows 2 k Opera 9 also all working appart from basic usage, the otthers work fine some odd in that. fantastic stuff, nice work - S On 17/01/07, Mika Tuupola [EMAIL PROTECTED] wrote: I just released new version of jEditable plugin which works with jQuery 1.1. I

Re: [jQuery] dynamic loading of jquery.js into my web page

2007-01-17 Thread Andrea Ercolino
Christof Donat wrote: Maybe it has to do with your security-setings in IE. You need to allow scripts to access secure ActiveX-Controls, as you need for all ajax stuff. Otherwise there will of course not be any chance to get an XMLHttpRequest object. But that cannot be the case

Re: [jQuery] Using JQuery to fix Flash z-index problem?

2007-01-17 Thread Geoffrey Knutzen
I think you need to add the parameter wmode:transparent to your embed/object tag. That will allow a div to go over the flash movie. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of rolfsf Sent: Wednesday, January 17, 2007 11:20 AM To: discuss@jquery.com

[jQuery] Interface: Draggable Ghost should only show the border

2007-01-17 Thread floepi
Hi all, i was wondering how i can set my draggable options so that while dragging a copy of the element is made which shows only the border dimensions of it's parent element. Gilles window plugin (http://gilles.jquery.com/window/) does that really nicely. My problem is, that the modal divs i

Re: [jQuery] JQuery FX set an element to display block in progress ...

2007-01-17 Thread Brandon Aaron
We are looking into refactoring the code in FX. This has been brought up a couple of times that display: block is not necessary for the opacity animations. I'll see if I can get a temporary patch together for this. -- Brandon Aaron On 1/17/07, Microtoby [EMAIL PROTECTED] wrote: Thanks for your

Re: [jQuery] In place editor for jQuery 1.1

2007-01-17 Thread Ⓙⓐⓚⓔ
that's a beautiful piece of jQuery code! It does the job, it's short, and it just works! I look forward to using it! I did notice a few thing though, in the case of a degenerate this.length == 0, you break the chain. you can get the nodeName, so you shouldn't have to pass it you have

Re: [jQuery] Using JQuery to fix Flash z-index problem?

2007-01-17 Thread rolfsf
Thanks Geoffrey - I tried that, as I had read it elsewhere, but it didn't work. Perhaps I've got a typo somewhere - I'll go back and look again. Geoffrey Knutzen wrote: I think you need to add the parameter wmode:transparent to your embed/object tag. That will allow a div to go over the

Re: [jQuery] Using JQuery to fix Flash z-index problem?

2007-01-17 Thread SeViR
I use SWFObject to insert Flash. in html I have: div class=flash title=path/file.swf style=width:100px;height:200pxIf you can see this, then you have not flash./div and javascript: $(div.flash).each(function(){ this.style.zIndex = 1; this.style.visibility =

Re: [jQuery] dynamic loading of jquery.js into my web page

2007-01-17 Thread Aaron Heimlich
On 1/17/07, Andrea Ercolino [EMAIL PROTECTED] wrote: Could you please confirm that the page you see in FF and IE both show colored code? You'll begin to think I'm pedant, but in FF I see colored code, no matter if I reload. On the contrary, in IE7 I can see at first black code, and after a

Re: [jQuery] Proper OOP paradigm / please be friendly

2007-01-17 Thread Michael Geary
// this is .n much too complicated! Guys, I don't appreciate the profanity. My 10 and 11 year old daughters are learning JavaScript. I don't want them to be subjected to language like that. When you've offended some people already, offending more is probably not the best way to fix it.

Re: [jQuery] jQuery 1.1, Site, Docs, Surprise

2007-01-17 Thread Marc Jansen
Hi list, I just wanted to give my two cents (I'm not even sure whether this has been discussed already): the new layout (which I like very much!) is looking somehow strange in IE 5.01 and 5.5: http://browsershots.org/website/http://jquery.com/#success IE 5.01:

Re: [jQuery] Using JQuery to fix Flash z-index problem?

2007-01-17 Thread rolfsf
Thanks SeViR! I'll give it a try r. SeViR wrote: I use SWFObject to insert Flash. in html I have: div class=flash title=path/file.swf style=width:100px;height:200pxIf you can see this, then you have not flash./div and javascript: $(div.flash).each(function(){

Re: [jQuery] In place editor for jQuery 1.1

2007-01-17 Thread Mika Tuupola
On Jan 17, 2007, at 9:40 PM, Ⓙⓐⓚⓔ wrote: I did notice a few thing though, in the case of a degenerate this.length == 0, you break the chain. you can get the nodeName, so you shouldn't have to pass it This is related bug: http://jquery.com/dev/bugs/bug/811/ Code is there to prevent

Re: [jQuery] $.ajax call works with 1.04 but not with 1.1

2007-01-17 Thread Sasha Oros
Jörn, I found out that when I use 1.04 a 'test' variable gets a list of the user names, but when I switch to 1.1 it gets value. var test = $(/viewentries/viewentry/[EMAIL PROTECTED]'1'], xml).text(); Jörn Zaefferer wrote: Sasha Oros schrieb: By the way, all the variable values (url,

Re: [jQuery] In place editor for jQuery 1.1

2007-01-17 Thread Ⓙⓐⓚⓔ
I would have done it the same way... but return this, instead of return false (the chain breaker) On 1/17/07, Mika Tuupola [EMAIL PROTECTED] wrote: On Jan 17, 2007, at 9:40 PM, Ⓙⓐⓚⓔ wrote: I did notice a few thing though, in the case of a degenerate this.length == 0, you break the

Re: [jQuery] In place editor for jQuery 1.1

2007-01-17 Thread Nathaniel See
Looks good FF2.0.0.1, IE 6 On winXP SP2. Very nice. Mika Tuupola wrote: I just released new version of jEditable plugin which works with jQuery 1.1. I would appreciate feedback from people using Windows browsers. Download [1] and test [2] links below: [1]

Re: [jQuery] Slow Selector... What should I do?

2007-01-17 Thread Christopher Jordan
Thanks for the advice Brian. I hope it will too. What do you consider a big DOM? I'm working with three calendars on screen at a time. Given a three month span that's somewhere in the neighborhood of 90 cells (give or take). Of course there's three divs on the right of those, and spans,

[jQuery] Site developers section

2007-01-17 Thread Sébastien Pierre
Hi all, It seems like the development section kind of vanished since the new jQuery 1.1 redesign. I don't find any link on browsing the tickets database... which is kind of annoying because I would like to track tickets I've submitted. BTW, what would be the official process to submit

Re: [jQuery] Proper OOP paradigm / please be friendly

2007-01-17 Thread Michael Geary
Guys, I don't appreciate the profanity. My 10 and 11 year old daughters are learning JavaScript. I don't want them to be subjected to language like that. Just to clarify, my daughters don't actually read the jQuery list - yet. Their goal is to make an online computer game for some of their

Re: [jQuery] Interface: Draggable Ghost should only show the border

2007-01-17 Thread Stefan Petre
floepi wrote: Hi all, i was wondering how i can set my draggable options so that while dragging a copy of the element is made which shows only the border dimensions of it's parent element. Gilles window plugin (http://gilles.jquery.com/window/) does that really nicely. My problem is,

Re: [jQuery] Interface: Draggable Ghost should only show the border

2007-01-17 Thread Webunity | Gilles van den Hoven
I have to update my window plugin some time.. All those nice jQuery releases make my life so much easier! Thanx you guys for activly devving this!! Stefan Petre wrote: floepi wrote: Hi all, i was wondering how i can set my draggable options so that while dragging a copy of the element

Re: [jQuery] Form not submitting

2007-01-17 Thread Mungbeans
dave.methvin wrote: Do you have a form with the id of login? If not, use a different selector to get it. The key is to call the submit method on the underlying DOM object of the form. $(selector-to-your-form)[0].submit() Yes it is there. Absolutely, definitely. -- View this

Re: [jQuery] Proper OOP paradigm / please be friendly

2007-01-17 Thread Mike Alsup
Jeez Mike, way to make me feel even older.My eleven year olds haven't a clue what JavaScript is, but they're pretty good at linerider! (http://www.linerider.com/) Mike On 1/17/07, Michael Geary [EMAIL PROTECTED] wrote: Guys, I don't appreciate the profanity. My 10 and 11 year old

Re: [jQuery] Using JQuery to fix Flash z-index problem?

2007-01-17 Thread Geoffrey Knutzen
Note, this also works for safari on a mac -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of rolfsf Sent: Wednesday, January 17, 2007 11:54 AM To: discuss@jquery.com Subject: Re: [jQuery] Using JQuery to fix Flash z-index problem? Thanks SeViR! I'll give

[jQuery] Strange bug with jquery 1.1 and i.e 6

2007-01-17 Thread Matthieu BARBE
See this page in action with i.e 6 : http://www.mes-anniversaires.com/jquery/ Internet explorer don't load correctly... this script test.js ( http://www.mes-anniversaires.com/jquery/test.js) fails this navigator but with firefox and opera, it's ok, why ? Thx [EMAIL PROTECTED]

[jQuery] Fotonotes-like plugin?

2007-01-17 Thread Michael E. Carluen
Hello folks. Somewhere buried in the list archive is an inquiry regarding a jQuery plugin adaptation of Fotonotes.net. I can not however, confirm if there were any responses. Is anyone aware of, or is working on a similar photo annotation plugin for jQuery? Thanks, Michael

Re: [jQuery] Proper OOP paradigm / please be friendly

2007-01-17 Thread Christopher Jordan
How old are they Mike? I hope someday that I have kids who dig this stuff as much as I do. It'll be neat to see where they could take it. :o) Michael Geary wrote: Guys, I don't appreciate the profanity. My 10 and 11 year old daughters are learning JavaScript. I don't want them to be subjected

Re: [jQuery] Form not submitting

2007-01-17 Thread Mungbeans
malsup wrote: You don't *have* to have a submit button on the form, but you really should. What if javascript is disabled? You still want the form to work, right? You can use your image as a submit element if you like: input type=image src=myImage.gif / Actually my code starts

Re: [jQuery] Update for jQuery 1.1 compatibility?

2007-01-17 Thread Jan Sorgalla
agent2026 wrote: Hi Jan, Testing in IE6/7 the carousel breaks with jQuery 1.1 (with or without the 1.0 compatibility plugin): Line: 30 Char: 2 Error: Type Mismatch Code: 0 Still works with 1.0.4 though. Adam Hi, thats because of this bug:

Re: [jQuery] Fotonotes-like plugin?

2007-01-17 Thread Jörn Zaefferer
Michael E. Carluen schrieb: Hello folks. Somewhere buried in the list archive is an inquiry regarding a jQuery plugin adaptation of Fotonotes.net. I can not however, confirm if there were any responses. Is anyone aware of, or is working on a similar photo annotation plugin for jQuery?

[jQuery] newb question - JQuery fade and replace

2007-01-17 Thread rplobue
Im looking for help on how to write a function. In standard javascript i have 2 elements: oldData, and newData. Currently i just am swapping the two with replaceChild. However i want to add a [fade-out, replace, fade-in] sequence to it with JQuery. I am wondering is it possible to create a

Re: [jQuery] Form not submitting

2007-01-17 Thread Olaf Bosch
Mungbeans schrieb: try this: function submitLoginForm() { //validation is working so I know that the load form function worked // when this do, then is submitted if ( ($(#username).val()== ) || ($(#passwd).val()== )) { alert (Please complete the username and password fields.);

Re: [jQuery] Fotonotes-like plugin?

2007-01-17 Thread Michael E. Carluen
Thanks Jorn. I didn't even notice those annotations. Its definitely a good start. I appreciate the response... Michael -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jörn Zaefferer Sent: Wednesday, January 17, 2007 1:48 PM To: jQuery

Re: [jQuery] newb question - JQuery fade and replace

2007-01-17 Thread James Thomas
You could use the setTimeout method, giving it enough time to make sure that the swap finished successfully. rplobue wrote: Im looking for help on how to write a function. In standard javascript i have 2 elements: oldData, and newData. Currently i just am swapping the two with

[jQuery] Junior Programmers (RE: Proper OOP paradigm / please be friendly)

2007-01-17 Thread Michael Geary
From: Michael Geary Just to clarify, my daughters don't actually read the jQuery list - yet. Their goal is to make an online computer game for some of their friends to play. Right now they're just learning about variables and loops and a bit of HTML and CSS. Hopefully they will be

Re: [jQuery] Form not submitting

2007-01-17 Thread Mungbeans
Olaf wrote: function submitLoginForm() { //validation is working so I know that the load form function worked // when this do, then is submitted if ( ($(#username).val()== ) || ($(#passwd).val()== )) { alert (Please complete the username and password fields.);

[jQuery] can't get accordion to work

2007-01-17 Thread Daniel McBrearty
hi, I am trying to get this to fire, but no joy ... My code is very similar to the example code: div class=tx_acc h3sitetext/h3 pto do/p pdone/p /li h3phrases/h3 /div . . . $(function() { $(.tx_acc).Accordion(); }); but nothing happens. Just a plain set of h3's/paras. If I

[jQuery] jQuery 1.1-support for Aptana

2007-01-17 Thread Edwin Martin
Instead of waiting for the new version of Aptana, you can download the latest jQuery 1.1 scriptdoc-file and documentation for Aptana here: http://www.bitstorm.org/edwin/jquery/ Edwin Martin ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] can't get accordion to work

2007-01-17 Thread Daniel McBrearty
additionally, I threw some alert boxes into the accordion source, to see if the code is actually getting there (haven't quite got the hang of firebug yet ... ) // create private scope with $ alias for jQuery (function($) { alert(here); // this fires // save reference to plugin

Re: [jQuery] Junior Programmers (RE: Proper OOP paradigm / please be friendly)

2007-01-17 Thread Jonathan Sharp
On 1/17/07, Michael Geary [EMAIL PROTECTED] wrote: From: Michael Geary [snip] They're 10 and 11. We will see if they actually stick with it; they've only done a little bit so far. What amazed me was that they actually took an interest themselves. So far so good... I can just see their

Re: [jQuery] Form not submitting

2007-01-17 Thread Olaf Bosch
Mungbeans schrieb: Thanks, Olaf. Since last posting I reworked the javascript (pretty much as you said): Your image replace are shit. Looks so: $(#submit-container).empty().append(input type=\image\ src=\images/signin.png\ AND SO ON /); ATTENTION!!! - in Scripts are bad, see image name

Re: [jQuery] Form not submitting

2007-01-17 Thread Mungbeans
Olaf wrote: For what is this good? You have this in posted HTML!? I'm not sure I understand this question or its tone. I posted into Nabble in text. I have to remember to replace the lt: and gt; so it doesn't print out as html. Pity Nabble doesn't have a quote or code button to wrap

Re: [jQuery] Junior Programmers (RE: Proper OOP paradigm / please be friendly)

2007-01-17 Thread Erik Beeson
Never saw Linerider before, that is really cute. Will have to try it on the tablet PC. Far, far off topic now, but since somebody else mentioned it, I might as well point out this excellent roundup of some of the best Linerider runs:

Re: [jQuery] Form not submitting

2007-01-17 Thread Olaf Bosch
Mungbeans schrieb: Olaf wrote: For what is this good? You have this in posted HTML!? I'm not sure I understand this question or its tone. I posted into Nabble in text. I have to remember to replace the lt: and gt; so it doesn't print out as html. Pity Nabble doesn't have a quote or

[jQuery] JQuery and Interface

2007-01-17 Thread Timothy Bowler
Hi, Im using the slide show from the interface plugin. It all works apart from the links. Im using apache rewrite and also php re-writes. The slide show's url is property_details/1 and when clicking on a link goes to #2slideShow/. Instead it should be property_details/1#2slideShow. On their

Re: [jQuery] Form not submitting

2007-01-17 Thread Mungbeans
Olaf wrote: I ask why you replace in script a gif in a png and not use the png in HTML!? ( !? == rhetorical ask == no answer necessarily ) ;) I was playing around with the image formats seeing if they made to a difference to the way they displayed. The images were exactly the same. The

[jQuery] Calling webservices via WSDL SOAP

2007-01-17 Thread jquezy
Search for this, but couldn't find an answer. How do call webservices in Jquery via a wsdl file? -- View this message in context: http://www.nabble.com/Calling-webservices-via-WSDL-SOAP-tf3031039.html#a8421717 Sent from the JQuery mailing list archive at Nabble.com.

Re: [jQuery] newb question - JQuery fade and replace

2007-01-17 Thread Blair McKenzie
JQueryFadeSwap(oldStuff, newStuff){ $(newStuff).hide(); // this handles browser differences, but also gives you a place to hook it 'out' animations for new $(oldStuff).fadeOut(function(){ // you can add a callback to animations that run when the effect is completed swap(oldStuff,

Re: [jQuery] jQuery fix to IE's lack of 'max-width' CSS support??

2007-01-17 Thread tony rasmus
I'm stuck :) The desired behavior is in Firefox: When the window size decreases below a box's max-width value, the box width is auto and shrinks. I think this is standard: http://www.w3.org/TR/CSS21/visudet.html#min-max-widths The popular expressions fix to the IE5/6 CSS max-width bug is:

Re: [jQuery] Display error if no INPUT radio is checked.

2007-01-17 Thread Blair McKenzie
Try error = error + $(this).parent().parent().find(td:first).text(); Blair On 1/17/07, Jamal Arbib [EMAIL PROTECTED] wrote: hi i am very new to this group i try to display the text of the first TD if no INPUT radio of the second TD is checked. i try this code , it return all TD 's

[jQuery] [PLUGIN] Interface.Draggable zIndex ignored

2007-01-17 Thread j. siefer
-- .Draggable({ zIndex:1000, ghosting:true, opacity:0.5, containment:[_dtP.left,_dtP.top,_dtP.w,_dtP.h], insideParent:true }) --- Hi, i have problems with

Re: [jQuery] List styling not working after $.ajax call

2007-01-17 Thread Mungbeans
Compare the html before and after the replace. If you are using Firefox and the Web Developer Toolbar you can examine the ajax generated source using View Source - View Generated Source. You will probably find that the html is different in some way. Also, if the styling was added using

Re: [jQuery] Display error if no INPUT radio is checked.

2007-01-17 Thread mohd khairi
$(function(){ $(#myForm).submit(function(){ var error=; $(#myTable tr td:nth-child(even)).each(function(){ if(!$(this).find([EMAIL PROTECTED]:checked).size()) error=error + $(this).prev(td).text() + br /; }); $(#error).html(error); return error==; });}); myTable is the

Re: [jQuery] jQuery fix to IE's lack of 'max-width' CSS support??

2007-01-17 Thread Dave Methvin
I'm glad you brought this up, I was going to need it soon. I ran your test case (thanks for giving one) and noticed that if you size the window to like 150px and reload it does resize up or down fine until it reaches the 310 case and then it gets stuck. width:

Re: [jQuery] jQuery fix to IE's lack of 'max-width' CSS support??

2007-01-17 Thread Dave Methvin
As soon as I sent I thought of this. width: expression(document.body.clientWidth 310 ? 300px : auto ); margin: 10px expression(document.body.clientWidth 310 ? auto : 10px ) 10px 10px; You might expect 10px auto 10px 10px to work but it doesn't; the expression has to be there. Yes it

  1   2   >