[jQuery] Re: Change Window Location, and Send REQUEST or POST Info?

2009-12-20 Thread aaronjacobstew...@gmail.com
Absolutely, you can create a form with hidden fields on the page that POSTS its values to the server, or you can initiate an AJAX request with the current page and store it server side in the session, or you can simply write the current pre-login page out to a cookie, and have the login page redire

[jQuery] Re: Change opacity for all divs except one

2009-12-05 Thread aaronjacobstew...@gmail.com
Although the description is somewhat unclear, if you wish to allow the user to have several thumbnails selected, all at full opacity, you should adapt Maurico's nice script a little; the .click function should add the selected thumbnail to an array or list which can be used in the chain to filter t

[jQuery] Re: Content loaded via Ajax and global JS

2009-12-05 Thread aaronjacobstew...@gmail.com
Two ways. One is to extend your ajax callback to un-bind all existing button handlers and then re-bind them now that your new content has been inserted. OR the elegant way; use the .live method instead of .bind, it is designed for just such occasions. http://docs.jquery.com/Events/live#typefn go