Re: [jQuery] NEWS: JQuery being used for Bookmarklets

2006-10-04 Thread dizzledorf
Patrick, I haven's used JS Shell, but digging around that site led me to their Bookmarklets page: http://www.squarefree.com/bookmarklets/ This is a godsend for development and testing! Many features are already present in the Web Dev toolbar, other bookmarklets, etc. But there's still a few

Re: [jQuery] Request: Window plugin

2006-09-27 Thread dizzledorf
Wow, that reminds me a lot of WinLIKE: http://www.winlike.net --DIZZLE Marco M. Jaeger-2 wrote: There's another one that could be converted to jQuery: http://www.net4visions.com/dev/dialog/dialog.htm -Original Message- From: Dan Atkinson [mailto:[EMAIL PROTECTED] Sent:

Re: [jQuery] InnerFade plugin in live site

2006-09-25 Thread dizzledorf
Armand, Looks good, but it's tough to click on a particular item as the ticker cycles awfully fast... Maybe consider using the newsTicker plugin: http://www.texotela.co.uk/code/jquery/newsticker/ It's very lightweight and pauses on hover, so individual items can be frozen, allowing for easier

Re: [jQuery] editInPlace Plugin

2006-09-25 Thread dizzledorf
Yehuda, I like it! But I keep getting null for the value parameter when I pass it onto my PHP processor. ID comes through OK... Any ideas? My code, simply: $(document).ready(function() { var url=test_proc.php; $(.editable).editInPlace(url); }); (assign to all elements with

Re: [jQuery] editInPlace Plugin

2006-09-25 Thread dizzledorf
http://www.engagingdesigns.com/sandbox/editinplace/ Thanks, --DIZZLE wycats wrote: Do you have a link? -- Yehuda On 9/25/06, dizzledorf [EMAIL PROTECTED] wrote: Yehuda, I like it! But I keep getting null for the value parameter when I pass it onto my PHP processor. ID comes

Re: [jQuery] editInPlace Plugin

2006-09-25 Thread dizzledorf
? -- Yehuda On 9/25/06, dizzledorf [EMAIL PROTECTED] wrote: http://www.engagingdesigns.com/sandbox/editinplace/ Thanks, --DIZZLE wycats wrote: Do you have a link? -- Yehuda On 9/25/06, dizzledorf [EMAIL PROTECTED] wrote: Yehuda, I like it! But I keep getting

Re: [jQuery] editInPlace Plugin

2006-09-25 Thread dizzledorf
, dizzledorf [EMAIL PROTECTED] wrote: This is exactly what was in the code section of http://jquery.com/docs/Plugins/editInPlace/. I simply copied it into a file called editinplace.js. Is there a .js file that can be downloaded directly? wycats wrote: What's up with the [EMAIL PROTECTED] stuff

Re: [jQuery] How to change value of select dropdown?

2006-09-21 Thread dizzledorf
) select.selectedIndex = i; }); }; Kawika dizzledorf wrote: Seems like a simple action, and it works in Firefox, but not IE... I'm trying to change the value of a dropdown box based on an event triggered in another text box. It's a contact form, and I just want

Re: [jQuery] Fader code I duplicated using JQuery

2006-09-21 Thread dizzledorf
Rey, Looks good. Just one minor niggle on your demo: the rounded box is out-of-whack in IE6. Nice work! --DIZZLE Rey Bango-2 wrote: I saw this posting: http://mikeomatic.net/techtips/css-crossfader/ and it showed a really cool fader. So I duplicated it using JQuery:

[jQuery] How to change value of select dropdown?

2006-09-20 Thread dizzledorf
Seems like a simple action, and it works in Firefox, but not IE... I'm trying to change the value of a dropdown box based on an event triggered in another text box. It's a contact form, and I just want to change the state dropdown Select on the keyup of the 5th character of the zip input box.

[jQuery] How to access the name of an element?

2006-09-14 Thread dizzledorf
(Firefox crashed just as was finishing my original (detailed) post... gr) Briefly: How do I access the name (id) of a particular DIV within a function that is accessing all DIVs with a certain class name? e.g. div id=editme01 class=editable.../div div id=editme02 class=editable.../div

Re: [jQuery] How to access the name of an element?

2006-09-14 Thread dizzledorf
: In jQuery functions this refers to the current element. I assume the same would apply to editable, assuming they used $.fn.editable. -- Yehuda On 9/14/06, dizzledorf [EMAIL PROTECTED] wrote: (Firefox crashed just as was finishing my original (detailed) post... gr) Briefly