JQuery Links
From Vandelay Wiki
Artvandelay (Talk | contribs) |
Artvandelay (Talk | contribs) |
||
| Line 9: | Line 9: | ||
*http://www.staticvoid.info/toggleEdit | *http://www.staticvoid.info/toggleEdit | ||
*http://docs.jquery.com/Tutorials:Edit_in_Place_with_Ajax | *http://docs.jquery.com/Tutorials:Edit_in_Place_with_Ajax | ||
| + | |||
| + | <pre> | ||
| + | $("#viewDisclaimer").toggle( | ||
| + | function(){ | ||
| + | $("#disclaimer").css('display',''); | ||
| + | }, | ||
| + | function(){ | ||
| + | $("#disclaimer").css('display','none'); | ||
| + | } | ||
| + | ); | ||
| + | </pre> | ||
| + | |||
| + | |||
---- | ---- | ||
Back to [[HTML]] | Back to [[HTML]] | ||