[jQuery] jQuery Cycle problem in IE6...

2008-09-28 Thread Andy
for any help given! KR TIA, Andy

[jQuery] Re: i was patient, now i'm frustrated

2008-09-26 Thread Andy Matthews
have this mailing list. Why do you need the site at all? andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Richard W Sent: Friday, September 26, 2008 3:36 AM To: jQuery (English) Subject: [jQuery] i was patient, now i'm frustrated How long

[jQuery] Re: Listen for location anchor change?

2008-09-24 Thread Andy Matthews
Javascript has the built in property location.hash that will return the value of the anchor along with the # sign. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mario Sent: Wednesday, September 24, 2008 3:09 PM To: jQuery (English

[jQuery] Re: using click() with $(event.target).is(something)

2008-09-22 Thread Andy Matthews
If the click event for button A happens after the page load, then you'll need to rebind the event for button A in button b's success block. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of light-blue Sent: Monday, September 22, 2008 3:24 PM To:

[jQuery] Re: jQuery.center Plugin

2008-09-18 Thread Andy Matthews
Bob... Is there any reason why you're not doing this with pure CSS? You'd probably be done by now if you did. Here's a simple example: http://commadelimited.com/uploads/center.html As you can see, there's hardly anything to the CSS, and it's very simple to implement. andy -Original

[jQuery] Re: apples webclip feature in jquery

2008-09-17 Thread Andy Matthews
Could you elaborate? What is this webclip of which you speak? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Shafer Sent: Wednesday, September 17, 2008 11:41 AM To: jQuery (English) Subject: [jQuery] apples webclip feature in jquery I am

[jQuery] Re: Checking if input is a number.

2008-09-16 Thread Andy Matthews
Well, a number by definition can't have spaces in it. So if there ARE spaces, then it's a string, and can be treated as such. Alternately I suppose you could try multiplying the value by 1 and see what you get. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL

[jQuery] Re: Oddity with Jquery and Adobe AIR

2008-09-12 Thread Andy Matthews
the HTML being added is generated via Ajax. I guess I could bring the data in via json and assemble the HTML objects from within the original script. I am curious why it works in safari but not webkit/air. Thanks for the assist. On Sep 11, 4:40 pm, Andy Matthews [EMAIL PROTECTED] wrote: Why are you

[jQuery] Re: Detecting Ctrl + click

2008-09-11 Thread Andy Matthews
Should just be a matter of checking the keypress event: http://docs.jquery.com/Events/keypress#fn -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, September 10, 2008 6:10 PM To: jQuery (English) Subject:

[jQuery] jquery 1.2.3, validation plugin 1.1, and IE6

2008-09-11 Thread Andy Matthews
A coworker is trying to use this combination of codes to get a basic validation working for a form he's building. It works just fine in FF2, but does nothing in IE6, with no errors. Does anyone know of any reason why this shouldn't work? Andy Matthews

[jQuery] Re: jquery 1.2.3, validation plugin 1.1, and IE6

2008-09-11 Thread Andy Matthews
Okay... I'll get him to upload a test page when he gets back. Thanks Jörn. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jörn Zaefferer Sent: Thursday, September 11, 2008 10:15 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re

[jQuery] Re: Oddity with Jquery and Adobe AIR

2008-09-11 Thread Andy Matthews
and making it far easier to read. andy matthews -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of gecko68 Sent: Thursday, September 11, 2008 1:45 PM To: jQuery (English) Subject: [jQuery] Oddity with Jquery and Adobe AIR I am trying to append some HTML

[jQuery] Re: Jcrop v0.9.0 image cropping plugin - comments please

2008-09-10 Thread Andy Matthews
selection to run the selection. andy matthews -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kelly Sent: Tuesday, September 09, 2008 4:35 PM To: jQuery (English) Subject: [jQuery] Jcrop v0.9.0 image cropping plugin - comments please Announcing

[jQuery] Re: jQuery how to pronounce

2008-09-10 Thread Andy Matthews
jay-queer-ee -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Reinaldo JuniorZ Sent: Wednesday, September 10, 2008 8:02 AM To: jQuery (English) Subject: [jQuery] jQuery how to pronounce Hello guys, I'm goigo to give a speech on the campus

[jQuery] Re: jQuery how to pronounce

2008-09-10 Thread Andy Matthews
That reminds me of the how to pronounce GIF page: http://www.olsenhome.com/gif/ Incidentally, it's pronounced with a soft G, like giraffe. Not a hard G like gift. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alexandre Plennevaux Sent: Wednesday, September

[jQuery] Re: jquery is breaking iWebSite.js

2008-09-09 Thread Andy Matthews
Can you post a link to your site, with jQuery and the iWeb javascript code? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dittmer Sent: Tuesday, September 09, 2008 3:28 PM To: jQuery (English) Subject: [jQuery] jquery is breaking iWebSite.js

[jQuery] Re: put image on top of another image

2008-09-09 Thread Andy Matthews
You don't need jQuery for this. It can be done with CSS. Here's a link that you can inspect to see what I'm talking about: http://www.commadelimited.com/code/overlapimages/ andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cc96ai Sent

[jQuery] Re: $(xx).load can't load css and js in html file on Chrome??

2008-09-08 Thread Andy Matthews
What's the actual code? I'm assuming you're not actually using 'xx' as your selector because that would never work. That format is reserved for accesing a specific tag. If you want to access a class, or id, then you'd need to prepend the 'xx' with either a . for a class, or # for an id.

[jQuery] Re: $(xx).load can't load css and js in html file on Chrome??

2008-09-08 Thread Andy Matthews
Gotcha. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jove Sent: Monday, September 08, 2008 10:41 AM To: jQuery (English) Subject: [jQuery] Re: $(xx).load can't load css and js in html file on Chrome?? I' sorry, xx just a example, in

[jQuery] Re: Fire events programmatically

2008-09-08 Thread Andy Matthews
As an addition to this, you can also listen for specific events, or custom events like so: $('#myDiv').bind('myCustomEvent',function(){ // do something }); -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh Nathanson Sent: Monday, September

[jQuery] Re: Cappucino's FlickrDemo in 45 lines of jQuery

2008-09-05 Thread Andy Matthews
Are you supposed to be able to open the picture and view it large? Because that's what I would expect to be able to do. That doesn't work in either version, (yours or theirs). -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ben Sargent Sent:

[jQuery] how to post to 2 different locations in jquery?

2008-09-04 Thread Andy
Hi, I would like to ask, how to post a form to 2 different locations in jquery? i use this code but seems not working : $(document).ready(function() { $(#contact).submit(function() { //var addresslines = doThing($('#address')) //remove all the

[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-04 Thread Andy Matthews
PROTECTED] On Behalf Of Steffan A. Cline Sent: Thursday, September 04, 2008 8:37 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: jQuery test suite on new Google Chrome browser on 9/3/08 7:19 AM, Andy Matthews at [EMAIL PROTECTED] wrote: According to getclicky.com, Chrome already has

[jQuery] Re: jquery validation plugin problem in textarea [validate]

2008-09-03 Thread Andy
that contains nothing but \n is invalid for the required method. Does that answer your question? Jörn On Tue, Sep 2, 2008 at 7:01 PM, Andy [EMAIL PROTECTED] wrote: I mean is it suppporting the newline (\n) character to be validated before passed through to another page? because mine doesnt seem

[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-03 Thread Andy Matthews
According to a site called GetClicky, Chrome already has 2.8% market share: http://getclicky.com/chrome/ -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Kruse Sent: Tuesday, September 02, 2008 4:49 PM To: jQuery (English) Subject:

[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-03 Thread Andy Matthews
Makes sense because Chrome is based on WebKit just like Safari. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of timothytoe Sent: Tuesday, September 02, 2008 5:49 PM To: jQuery (English) Subject: [jQuery] Re: jQuery test suite on new Google

[jQuery] Re: New Google Browser announced

2008-09-03 Thread Andy Matthews
Microsoft can't retire IE6 any more than Ford could retire 1996 Ford Explorers. It has to be the user's choice. What's a better suggestion is for WEBSITES to stop supporting IE6 (coding CSS and JS fixes and workarounds) and encourage people to upgrade on their own. _ From:

[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-03 Thread Andy Matthews
According to getclicky.com, Chrome already has an almost 3% market share: getclicky.com/chrome/ -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Wednesday, September 03, 2008 9:01 AM To: jquery-en@googlegroups.com Subject:

[jQuery] Re: I don't want to downoad a plugin

2008-09-03 Thread Andy Matthews
Is there a reason you don't want to download the library, or plugins? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jjsanders Sent: Wednesday, September 03, 2008 9:09 AM To: jQuery (English) Subject: [jQuery] I don't want to downoad a plugin

[jQuery] Re: jquery validation plugin problem in textarea [validate]

2008-09-03 Thread Andy
I meant, why if there is a \n character on textarea, it couldnt send its value? Thanks Andy On Sep 3, 8:46 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote: I still don't get what the actual issue. What do you mean with send? Sending via Ajax to the server? To a validation method? Jörn On Wed

[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-03 Thread Andy Matthews
They started with a brand new codebase. No bloat from stuff that's unused or inefficient. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, September 03, 2008 3:38 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: jQuery

[jQuery] jquery validation plugin problem in textarea [validate]

2008-09-02 Thread andy prasetyo
I use jquery validation plugin from bassistance.de, but everytime i use it on textarea, it doesnt work (doesnt pass the value properly). Any suggestions?

[jQuery] Re: jquery validation plugin problem in textarea [validate]

2008-09-02 Thread andy prasetyo
ok one min let me upload..it doesnt seem to pass the value if i use \n (newline) On Sep 2, 10:17 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote: Could you be more specific, eg. provide a testpage? Jörn On Tue, Sep 2, 2008 at 2:05 PM, andy prasetyo [EMAIL PROTECTED] wrote: I usejquery

[jQuery] Re: jquery validation plugin problem in textarea [validate]

2008-09-02 Thread andy prasetyo
Ok, Jorn here it is : http://d661480.u34.strictlywebhosting.com/register.html..really appreciate your help and guidance Thanks On Sep 2, 10:40 pm, andy prasetyo [EMAIL PROTECTED] wrote: ok one min let me upload..it doesnt seem to pass the value if i use \n (newline) On Sep 2, 10:17 pm

[jQuery] Re: jquery validation plugin problem in textarea [validate]

2008-09-02 Thread Andy
If users press enter or newline on textareas it doesnt seem work On Sep 2, 10:47 pm, andy prasetyo [EMAIL PROTECTED] wrote: Ok, Jorn here it is :http://d661480.u34.strictlywebhosting.com/register.html..really appreciate your help and guidance Thanks On Sep 2, 10:40 pm, andy

[jQuery] Re: jquery validation plugin problem in textarea [validate]

2008-09-02 Thread Andy
to the validation? Jörn On Tue, Sep 2, 2008 at 6:44 PM, Andy [EMAIL PROTECTED] wrote: If users press enter or newline on textareas it doesnt seem work On Sep 2, 10:47 pm, andy prasetyo [EMAIL PROTECTED] wrote: Ok, Jorn here it is :http://d661480.u34.strictlywebhosting.com/register.html

[jQuery] jQuery Forum

2008-08-30 Thread Andy Horsman
Will there ever be an official jQuery forum? Mailing lists are kinda annoying and unorganized compared to forums. -- Regards, Andrew Horsman http://theroboticsuniverse.com

[jQuery] Re: jquery for web designers

2008-08-29 Thread Andy Matthews
John... You could focus on some of the things which can be condensed in the document using jQuery. For example. In an app I'm writing, I want rounded corners on some of my containers but both the color of the container, and the background against which it is displayed are dynamic, so I couldn't

[jQuery] Re: Transfer effect in UI

2008-08-28 Thread Andy Matthews
I can confirm this. The Transfer effect doesn't work in Safari 3 for the PC. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Thursday, August 28, 2008 7:41 AM To: jQuery (English) Subject: [jQuery] Transfer effect in UI

[jQuery] Change event for hidden form field

2008-08-28 Thread Andy Matthews
. Andy Matthews Senior ColdFusion Developer Office: 615.627.9747 Fax: 615.467.6249 www.dealerskins.com http://www.dealerskins.com/ Total customer satisfaction is my number 1 priority! If you are not completely satisfied with the service I have provided, please let me

[jQuery] Re: Change event for hidden form field

2008-08-28 Thread Andy Matthews
Something I forgot to add. The change event that I bound does fire correctly when I manually change the value of the field (I changed it's type from hidden to text for testing). _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Thursday, August

[jQuery] Re: Change event for hidden form field

2008-08-28 Thread Andy Matthews
() { $('$hiddenFormField').trigger('change'); } //pop up window calls the the parent window's function window.opener.triggerHiddenFormField(); brian On Aug 28, 11:40 am, Andy Matthews [EMAIL PROTECTED] wrote: Something I forgot to add. The change event that I bound does fire correctly when I manually

[jQuery] Re: Dan Switzer's Autocomplete plugin - can I do this...

2008-08-28 Thread Andy Matthews
the input field, I get an error: showResults is not defined http://testlogin.dealerskins.loc/admin/coupons/js/coupon_edit.js Line 130 Any ideas? Also, is Jörn's plugin listed on the jQuery site? andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf

[jQuery] Re: Dan Switzer's Autocomplete plugin - can I do this...

2008-08-28 Thread Andy Matthews
Subject: [jQuery] Re: Dan Switzer's Autocomplete plugin - can I do this... Andy, I think it might actually work without those changes you suggested. Problem is that at the point I'm calling the plugin, it doesn't recognize showResults as a method: That's a private function that only the plug

[jQuery] Re: Hiding other divs when I show one

2008-08-27 Thread Andy Matthews
Do you have a link you can provide? Something online? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of illtron Sent: Wednesday, August 27, 2008 8:37 AM To: jQuery (English) Subject: [jQuery] Hiding other divs when I show one I'm working on a

[jQuery] Dan Switzer's Autocomplete plugin - can I do this...

2008-08-27 Thread Andy Matthews
thought it would be enough to put a click handler on the input field like so: .click(function(){ showResults(); }); but that doesn't work. Anyone? Dan? Andy Matthews Senior ColdFusion Developer Office: 615.627.9747 Fax: 615.467.6249

[jQuery] Re: Problem with Tutorials:How jQuery Works

2008-08-26 Thread Andy Matthews
Oh?! You mean I have to include jQuery before the examples will work? :) I've done that before without realizing it. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: Tuesday, August 26, 2008 8:20 AM To: jquery-en@googlegroups.com Subject:

[jQuery] Re: input:empty and remember password

2008-08-25 Thread Andy Matthews
This is what someone on this list gave me about 2 weeks ago: // the focus / blur functionality of the text input // fields for the email a friend form. $('#input.email').bind('focus', function() { // Set the default value if it isn't set if ( !this.defaultValue )

[jQuery] Re: SUPERFISH Supersubs problem in mozilla firefox

2008-08-24 Thread andy
using supersubs works in all browsers, so I copied it all over and tried again, to no avail. Any ideas folks? Does anyone in these parts know who created this Super Subs plug in and how I could contact them? Thanks a lot! Andy On Jul 31, 5:25 am, Joel Birch [EMAIL PROTECTED] wrote: @andy: I notice

[jQuery] Best way to toggle a form field value

2008-08-21 Thread Andy Matthews
? Andy Matthews Senior ColdFusion Developer Office: 615.627.9747 Fax: 615.467.6249 www.dealerskins.com http://www.dealerskins.com/ Total customer satisfaction is my number 1 priority! If you are not completely satisfied with the service I have provided

[jQuery] Re: Best way to toggle a form field value

2008-08-21 Thread Andy Matthews
Anyone have input on this? This code runs, but it doesn't seem to want to toggle the value of the form field at all. It changes it once, then continues using the same value. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Thursday, August 21

[jQuery] Re: How to set background image when file name contains a space?

2008-08-21 Thread Andy Matthews
Spaces in file names for web apps are asking for trouble. Any way of getting around having the spaces ? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Thursday, August 21, 2008 2:03 PM To: jQuery (English) Subject:

[jQuery] Toggling boolean values in form fields

2008-08-21 Thread Andy Matthews
the current value of the selected form field var value = $formEl.val(); // set the new value $formEl.val(!value); alert(value); } Does anyone know why this isn't working right or, at some times, at all? Andy Matthews Senior ColdFusion

[jQuery] Re: New CF programmer - anxious to start using jQuery

2008-08-20 Thread Andy Matthews
Your best bet is to head over to Dan Switzer's blog and read up on the Auto-suggest: http://www.pengoworks.com/workshop/jquery/autocomplete.htm -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of larksys Sent: Wednesday, August 20, 2008 1:07 PM To:

[jQuery] Re: unsubscribe

2008-07-17 Thread Andy Matthews
Doesn't work that way James. Head over to the Google Groups website to unsubscribe. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of James Smith Sent: Wednesday, July 16, 2008 9:12 PM To: jquery-en@googlegroups.com Subject: [jQuery] unsubscribe unsubscribe

[jQuery] Re: Is there a plugin to zoom in/out an image

2008-07-17 Thread Andy Matthews
Colin... None of those plugins that you mentioned are for zooming in and out of images. They simply display a larger version of the image as an overlay to the page. Lihao... Here's a few that I found with a quick Google search: http://exscale.se/archives/2008/02/11/jquery-image-zoom-plug-in/

[jQuery] Input field: focus=remove text; blur=put it back

2008-07-17 Thread Andy Matthews
Is there a plugin for this by chance? I know it's pretty quick to write, but wanted to find out if someone's already done it better than I could. Also, would toggle() work for this sort of thing? Is there a focus/blur toggle in the jQuery core? Andy

[jQuery] Re: Input field: focus=remove text; blur=put it back

2008-07-17 Thread Andy Matthews
: focus=remove text; blur=put it back I wrote this a while back: http://dev.jquery.com/browser/trunk/plugins/clearonfocus/jquery.clearonfocus .js -- Brandon Aaron On Thu, Jul 17, 2008 at 11:19 AM, Andy Matthews [EMAIL PROTECTED] wrote: Is there a plugin for this by chance? I know it's pretty

[jQuery] Re: Is there a plugin to zoom in/out an image

2008-07-17 Thread Andy Matthews
AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Is there a plugin to zoom in/out an image Andy Matthews wrote: None of those plugins that you mentioned are for zooming in and out of images. They simply display a larger version of the image as an overlay to the page. Ahh OK, It's

[jQuery] Re: Uncompressed, Minified and Gzipped and Packed

2008-07-16 Thread Andy Matthews
://dean.edwards.name/packer/ Minified uses server side compression to further reduce the file size. Drawback of this method is that your server needs to be equipped to offer this version, and the file needs to be de-compressed on the client side. andy -Original Message- From: jquery-en

[jQuery] Re: Uncompressed, Minified and Gzipped and Packed

2008-07-16 Thread Andy Matthews
and Gzipped and Packed On Jul 16, 2008, at 7:48 PM, Andy Matthews wrote: Packed takes the source code and runs it through an algorithmn which compresses variable names, methods, code, etc into one big line of javascript. You can find more information about it, and pack your own code, here: http

[jQuery] Best Edit in Place plugin?

2008-07-15 Thread Andy Matthews
at one time. Andy Matthews Senior ColdFusion Developer Office: 615.627.9747 Fax: 615.467.6249 www.dealerskins.com http://www.dealerskins.com/ Total customer satisfaction is my number 1 priority! If you are not completely satisfied with the service I

[jQuery] Re: My first jQuery plugin

2008-07-15 Thread Andy Matthews
Pete... There is a built in parent method which does pretty much what you're doing. http://remysharp.com/jquery-api/ Look under parents(). -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ProggerPete Sent: Tuesday, July 15, 2008 10:41 AM To:

[jQuery] Re: Button Click

2008-07-11 Thread Andy Matthews
!-- the jQuery -- script type=text/javascript !-- $(document).ready(function(){ $('#myButton').click(function(){ location.href='/Tag/ List?page=1'; }); }); //-- /script !-- the button -- input type=button id=myButton

[jQuery] [ Add Onclick on loaded image ]

2008-07-10 Thread andy
Hi, I am using jquery to load image with ajax. $(#thumbnail).image(returData,function(){}); $.fn.image = function(src, f){ return this.each(function(){ var i = new Image(); i.src = src; i.onload = f; this.appendChild(i); }); } How can i

[jQuery] Re: Similar Plugins

2008-07-07 Thread Andy Matthews
Heck yeah...this is a great idea. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ariel Flesler Sent: Monday, July 07, 2008 8:53 AM To: jQuery (English) Subject: [jQuery] Re: Similar Plugins +1 -- Ariel Flesler http://flesler.blogspot.com

[jQuery] Re: How to pull a # URL value into a jquery variable?

2008-07-03 Thread Andy Matthews
Javascript has access to the location.hash property: http://www.java2s.com/Tutorial/JavaScript/0320__Location/Locationhash.htm -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of CraniumDesigns Sent: Thursday, July 03, 2008 3:57 AM To: jQuery

[jQuery] Re: Lightbox alternative that supports .php files

2008-06-30 Thread Andy Matthews
There's absolutely no reason why shouldn't be able to use a PHP page with Lightbox (or Thickbox) for that matter. It shouldn't care what the file extension is. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sketchy Sent: Monday, June 30, 2008

[jQuery] Re: Cycle Plugin - how to animate/transition of the pager nav

2008-06-26 Thread Andy Ford
I've managed to add some transition animations to the pager nav $.fn.cycle.updateActivePagerLink = function(pager, currSlideIndex) { $(pager).find('li') .filter('li:not('+currSlideIndex+')').removeClass('on'). animate({

[jQuery] Odd image button issue in IE

2008-06-25 Thread Andy Matthews
My client has discovered an interesting issue with the nav on a small site that I built out for him, and it only seems to happen in IE: http://www.sdiarchitects.com/home.php 1) Click on a button, Clients for example. 2) Then click on another button, like Contact Us. 3) If you click your back

[jQuery] Cycle Plugin - how to animate/transition of the pager nav

2008-06-25 Thread Andy Ford
I'm using jQuery with the pager and pagerAnchorBuilder functionality to generate the navigation into an ordered list. My slides (#slides) are fading in and out beautifully, but I'd also like to add transitions to the pager nav (#navSlides) as well. For this particular project, the slides

[jQuery] Re: SproutCore vs jQuery? Are there any comparisons out there?

2008-06-19 Thread Andy Matthews
be made. http://www.sproutcore.com/documentation/getting-started/ Jim -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 17, 2008 11:55 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: SproutCore vs jQuery? Are there any comparisons

[jQuery] onRighClick method?

2008-06-18 Thread Andy Matthews
Is there now, or are there any plans to have, an onRightClick method in jQuery? I found a ContextMenu plugin but it was last updated almost a year ago. Alternately, are there any other plugins out there that would offer ContextMenu support for right clicking?

[jQuery] Re: onRighClick method?

2008-06-18 Thread Andy Matthews
old but it still works On Wed, Jun 18, 2008 at 1:33 PM, Andy Matthews [EMAIL PROTECTED] wrote: Is there now, or are there any plans to have, an onRightClick method in jQuery? I found a ContextMenu plugin but it was last updated almost a year ago. Alternately, are there any other plugins out

[jQuery] Re: onRighClick method?

2008-06-18 Thread Andy Matthews
(although with some mods to allow for activation on left-click as well) and I can't think of any issues it has with Opera of the top of my head. On Wed, Jun 18, 2008 at 8:11 AM, Andy Matthews [EMAIL PROTECTED] wrote: Ahh... Opera doesn't support it? Interesting. I'll take a look

[jQuery] Re: onRighClick method?

2008-06-18 Thread Andy Matthews
also never heard one complaint from any of the 100 or so sites I've developed. Not trying to be belligerent here...just so you know. andy _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Isaak Malik Sent: Wednesday, June 18, 2008 8:33 AM To: jquery-en

[jQuery] Re: ANNOUNCE: black'n'white 1.0

2008-06-17 Thread Andy Matthews
understand that hating Internet Explorer is sort of de riguer for many web developers, but I feel that the hate simply makes you look unprofessional. Professionals work with what they've got and make the best of it. andy _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED

[jQuery] SproutCore vs jQuery? Are there any comparisons out there?

2008-06-17 Thread Andy Matthews
. But why? Why not jQuery, or Dojo, etc? Andy Matthews Senior ColdFusion Developer Office: 615.627.9747 Fax: 615.467.6249 www.dealerskins.com http://www.dealerskins.com/ Total customer satisfaction is my number 1 priority! If you are not completely

[jQuery] Re: ANNOUNCE: black'n'white 1.0

2008-06-17 Thread Andy Matthews
to download the plugin. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Massimiliano Balestrieri Sent: Tuesday, June 17, 2008 10:18 AM To: jQuery (English) Subject: [jQuery] Re: ANNOUNCE: black'n'white 1.0 I understand your point but my

[jQuery] Re: SproutCore vs jQuery? Are there any comparisons out there?

2008-06-17 Thread Andy Matthews
? Are there any comparisons out there? There are no comparisons out at the moment. While SproutCore has recently received a lot of press, it's been completely out of the limelight otherwise. Rey... Andy Matthews wrote: I'm looking for comparisons between the newly popular JS library SproutCore

[jQuery] Re: hover flickering, snow storm pixels on JPGs (beginner problem)

2008-06-17 Thread Andy Matthews
I'm looking at it in IE7 and I'm not seeing any of these white pixels you're mentioning. Can you confirm the version of IE you're using? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tlob Sent: Tuesday, June 17, 2008 3:21 PM To: jQuery

[jQuery] Re: hover flickering, snow storm pixels on JPGs (beginner problem)

2008-06-17 Thread Andy Matthews
PROTECTED] On Behalf Of tlob Sent: Tuesday, June 17, 2008 3:39 PM To: jQuery (English) Subject: [jQuery] Re: hover flickering, snow storm pixels on JPGs (beginner problem) http://vum.ch/thomas/ie7siggi.jpg On Jun 17, 10:31 pm, Andy Matthews [EMAIL PROTECTED] wrote: I'm looking at it in IE7 and I'm

[jQuery] Re: hover flickering, snow storm pixels on JPGs (beginner problem)

2008-06-17 Thread Andy Matthews
are in the same exact location as the dots in your screenshot. I'm betting that this has something to do with your use of your no shoplifting image: http://siggibucher.com/img/siggibucher.com_NO-SHOPLIFTING.gif Try removing that from use and see if it continues to exhibit this behavior. andy

[jQuery] Re: hover flickering, snow storm pixels on JPGs (beginner problem)

2008-06-17 Thread Andy Matthews
on JPGs (beginner problem) I just found out this one: http://www.alexjudd.com/?p=5 THANK YOU MICROSOFT argh On Jun 17, 10:48 pm, Andy Matthews [EMAIL PROTECTED] wrote: Ooops... I spoke too soon. When I click on an image from the list above, THEN I get the white dots. Interesting

[jQuery] Bindable variable data - similar to Flex?

2008-06-16 Thread Andy Matthews
updates. Can jQuery do this sort of thing? If not, are there plans to offer something like this? Andy Matthews Senior ColdFusion Developer Office: 615.627.9747 Fax: 615.467.6249 www.dealerskins.com http://www.dealerskins.com/ Total customer satisfaction

[jQuery] Re: Bindable variable data - similar to Flex?

2008-06-16 Thread Andy Matthews
No one has any comments on this? On Jun 16, 9:25 am, Andy Matthews [EMAIL PROTECTED] wrote: I'm reading about a newish JS framework called SproutCore:http://www.roughlydrafted.com/2008/06/14/cocoa-for-windows-flash-kill... utcore/ in which the article says that SproutCore supports binding

[jQuery] non-html elements

2008-06-14 Thread Andy Chambers
illustrates the behaviour. openair.js just calls expand_refs on document ready. When expand_refs gets around to expanding MYSELECT, it can't find any xrefs and so stops expanding that sub-tree and moves on to the next one.Am I doing something wrong? Cheers, Andy html head title /title

[jQuery] Re: [PLUGIN] Tweet! Added Twitter to your website

2008-06-12 Thread Andy Matthews
Cool... Demo link doesn't work. Does anyone have this in place yet? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Wednesday, June 11, 2008 9:41 PM To: jquery-en@googlegroups.com Subject: [jQuery] [PLUGIN] Tweet! Added Twitter

[jQuery] Re: [ANNOUNCE] Toaster plugin

2008-06-10 Thread Andy Matthews
and try to fix them Thanks Andy regards On Jun 9, 10:01 am, Andy Matthews [EMAIL PROTECTED] wrote: I'd be happy to help you test when you're ready. This is nicely done. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of h3 Sent: Monday, June

[jQuery] Re: Cornerz 0.4

2008-06-10 Thread Andy Matthews
an alterative rendering method which should allow textured backgrounds. I'll announce it here when it's ready. On Jun 4, 4:17 pm, Andy Matthews [EMAIL PROTECTED] wrote: I want to clarify my point on this. Of all the corner plugins, I think this one is the best. It results in the least amount

[jQuery] Re: [ANNOUNCE] Toaster plugin

2008-06-10 Thread Andy Matthews
BEAUTIFUL! That works perfectly. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of h3 Sent: Tuesday, June 10, 2008 11:53 AM To: jQuery (English) Subject: [jQuery] Re: [ANNOUNCE] Toaster plugin Done, it worked :) On Jun 10, 11:54 am, Dan G.

[jQuery] Re: [ANNOUNCE] Toaster plugin

2008-06-09 Thread Andy Matthews
I get an error when trying to run the demos (IE7). http://www.haineault.com/media/examples/jquery-ui-toaster/demo/#br andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of h3 Sent: Sunday, June 08, 2008 10:31 PM To: jQuery (English) Subject

[jQuery] Re: [ANNOUNCE] Toaster plugin

2008-06-09 Thread Andy Matthews
By the way... This plugin is REALLY nice when it works. Very well done. Now if you can just make sure it works in IE7, I might put this into production. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of h3 Sent: Sunday, June 08, 2008 10:31 PM

[jQuery] Re: [ANNOUNCE] Toaster plugin

2008-06-09 Thread Andy Matthews
tried it in IE yet.. but I plan to make it 100% compatible at least for IE 7+ for the 0.1 release After that I will propose it as an official jQuery plugin (or UI plugin) and move the repository/documentation to the right place Thanks for the feedback On Jun 9, 9:18 am, Andy Matthews [EMAIL

[jQuery] Re: passings variables to callback functions

2008-06-09 Thread Andy Matthews
Every jquery method includes an optional callback that you can explicitly call: $('#photoholder').append(imgdiv, function(){ // do something here }); -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of karlo_ubc Sent: Monday, June 09, 2008

[jQuery] Re: String Manipulation

2008-06-06 Thread Andy Matthews
Split is built into Javascript itself. Since jQuery merely adds methods, you can mix and match split() with jQuery code. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Sent: Thursday, June 05, 2008 6:50 PM To: jQuery (English

[jQuery] Re: Cornerz 0.4

2008-06-04 Thread Andy Matthews
I'm really disappointed with this script. I spent about an hour last night trying to get it to work (part of which was my Mac's fault) and when I finally did, it kept showing the squared-off corners in addition to the rounded corners. I finally figured out that the corner has to be set to the

[jQuery] Re: [ANNOUNCE] jFlip plugin

2008-06-04 Thread Andy Matthews
is flush to the edge of the window, when my mouse goes past the edge of the flip area, it also goes past the window which causes the corner to release and go back to it's original position. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Alsup

[jQuery] Re: Cornerz 0.4

2008-06-04 Thread Andy Matthews
the gradient background for my site I'd use this plugin in a heartbeat. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of DaveG Sent: Wednesday, June 04, 2008 10:06 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Cornerz 0.4 Andy

[jQuery] Re: [ANNOUNCE] jFlip plugin

2008-06-03 Thread Andy Matthews
Might I suggest that the author center the examples in the browser window? It's WAY too difficult to use with it being so close to the edge of the window. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Sauyet Sent: Tuesday, June 03,

<    1   2   3   4   5   6   7   8   9   >