[jQuery] Re: very simple jQuery not working

2009-12-16 Thread Brett Alton
I was looking for .keyup() not .change(), sorry. Please ignore. On Dec 16, 3:37 pm, Brett Alton wrote: > >         >                 src="<a rel="nofollow" href="http://ajax.googleapis.com/ajax/">http://ajax.googleapis.com/ajax/</a> >

[jQuery] jQuery, $.ajax and reCAPTCHA

2009-12-10 Thread Brett Alton
I'm trying to get jQuery to asynchronously load my recaptcha module, but it doesn't seem to like the fact that "echo recaptcha_get_html ($publickey);" spits out a mixture of HMTL and Javascript. Here's the code I am trying: $.ajax({ url: "inc/captcha.php",

[jQuery] Re: jQuery and $.post with PHP and $_POST

2008-12-24 Thread Brett Alton
is explicitly pressed it's value won't be sent. > So in the case given, since there are no other form elements, nothing > with be posted to the server. > > Karl Rudd > > On Wed, Dec 24, 2008 at 11:36 PM, Brett Alton > wrote: > > > How do I get PHP to pri

[jQuery] jQuery and $.post with PHP and $_POST

2008-12-24 Thread Brett Alton
How do I get PHP to print JavaScript variables via $_POST? jQuery's $.post doesn't seem to be submitting any data. This is a sample of what I have... test.php: -- '; print_r($_POST); echo ' -- jquery.js: -- $(document).ready(functio

[jQuery] Re: Add click() event to each() loop constructor

2008-12-10 Thread Brett Alton
t).ready(function() > { > $("a").each(function(i){ > $(this).click(function(){ > alert(i); > > }); > }); > }); > > Brian. > > On Wed, Dec 10, 2008 at 10:29 AM, Brett Alton <[EMAIL PROTECTED]>wrote: > > > > > Sorry, I'm new to Google Gro

[jQuery] Add click() event to each() loop constructor

2008-12-10 Thread Brett Alton
Sorry, I'm new to Google Groups and was trying to reply to a post but couldn't figure out how without e-mailing the author directly[1]. I'm trying to add the click() event to the each() loop constructor. e.g. $(document).ready(function() { $("a[id*='activate-']").each(function(i){

[jQuery] Manipulating input fields

2008-09-22 Thread Brett Alton
I'm trying to take the input from one text input field to the next and I'm not sure how to do it through jQuery. Can someone please send me a tutorial or example of how to do so? Right now I have: $(document).ready(function() { $("#agentfirstname").change(function() {