[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 brett.jr.al...@gmail.com wrote: html         head                 script type=text/javascript src=http://ajax.googleapis.com/ajax/ libs/jquery/1.3.2/jquery.min.js charset=utf-8/script

[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: script $.ajax({ url: inc/captcha.php,

[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: -- ?php echo 'pre'; print_r($_POST); echo '/pre'; ? form method=post action=test.php id=test

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

2008-12-24 Thread Brett Alton
, 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 brett.jr.al...@gmail.com wrote: How do I get PHP to print JavaScript variables via $_POST? jQuery's $.post doesn't seem to be submitting any data

[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] Re: Add click() event to each() loop constructor

2008-12-10 Thread Brett Alton
. On Wed, Dec 10, 2008 at 10:29 AM, Brett Alton [EMAIL PROTECTED]wrote: 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

[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() {