[jQuery] Re: Get input value from a loaded page

2008-05-18 Thread dearste
ok, in top.html, below inpu type..., i have added ?=echo $Count;?, and yes, php var is set in top.html. How to pass it in main page with a jquery .load?? On 18 Mag, 08:21, ferdjuan [EMAIL PROTECTED] wrote: Is your script which processes the $Count variable (I assume it's a page hit checker?)

[jQuery] Re: Get input value from a loaded page

2008-05-18 Thread dearste
the loaded page is top.php , where $Count; is set. regards On 18 Mag, 12:22, dearste [EMAIL PROTECTED] wrote: ok, in top.html, below inpu type..., i have added ?=echo $Count;?, and yes, php var is set in top.html. How to pass it in main page with a jquery .load?? On 18 Mag, 08:21

[jQuery] Get input value from a loaded page

2008-05-17 Thread dearste
Hi all, i have load into div a page: $(#top).load(top.html); Into top.html thare's a finput like this: input type=hidden id=counter value=?=$Count;? checked=1 / How can i do for retrieve some input value?? I have try this var numsg = $(#counter).val(); but not work. Thanks.