[jQuery] Re: [validate] -- newbie getting started

2008-10-23 Thread whitewaterbug
I know this is like the hello world of validate...can anyone see the issue? This is my first time using jquery and validate so my troubleshooting skills are not there yet. On Wed, Oct 22, 2008 at 10:11 AM, whitewaterbug [EMAIL PROTECTED]wrote: Thanks for the suggestions. I updated the form

[jQuery] [validate] -- newbie getting started

2008-10-22 Thread whitewaterbug
I am trying to get the validate plugin and the form plugin to work together. I would like to use in HTML markup to describe the validation, as it seems cleaner to read to me. So, I downloaded jquery, form, validate, and metadata...whipped up a quick form and tried it out. From firebug, I can

[jQuery] Re: [validate] -- newbie getting started

2008-10-22 Thread whitewaterbug
, 2008 at 2:49 PM, whitewaterbug [EMAIL PROTECTED] wrote: I am trying to get the validate plugin and the form plugin to work together. I would like to use in HTML markup to describe the validation, as it seems cleaner to read to me. So, I downloaded jquery, form, validate, and metadata

[jQuery] Re: [validate] -- newbie getting started

2008-10-22 Thread whitewaterbug
Thanks for the suggestions. I updated the form per suggestionsbut it still isn't doing the validation :( Here is the form now: -- html head script type=text/javascript src=jquery-1.2.6.min.js/script script type=text/javascript src=jquery.form.js/script script

[jQuery] Re: using jquery to get at the img data???

2008-10-20 Thread whitewaterbug
: On Mon, Oct 20, 2008 at 6:19 AM, whitewaterbug [EMAIL PROTECTED]wrote: I believe this would require a 2nd download of the image so that it is within the applet. I am trying to get the actual image data into the applet through javascript to applet communication or having the applet access the DOM

[jQuery] using jquery to get at the img data???

2008-10-19 Thread whitewaterbug
I am trying to pull the image displayed in the DOM into an applet that will do some image processing (e.g. blur), show the updated image back in the DOM, and then print. Is there a way in jquery to do this? I found in JSobject, I can get attributes of the image, but I couldn't see how to

[jQuery] Re: using jquery to get at the img data???

2008-10-19 Thread whitewaterbug
=logo.gif / To get the image current image location: $('#myImage').attr('src'); To update DOM with new image use: $('#myImage').attr('src', [new image location]); On Sun, Oct 19, 2008 at 3:30 PM, whitewaterbug [EMAIL PROTECTED]wrote: I am trying to pull the image displayed in the DOM