Collapse the form section
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-17-2015 09:02 AM
How can we collapse the form section on load.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-18-2015 08:50 AM
so can you load up on variables and setting variable values like that in one line just by comma separation?
var foo = "this", bar = "looks", rotisserie_chicken = "promising"; ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-18-2015 08:56 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-18-2015 08:57 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-18-2015 09:01 AM
And because of the way JavaScript treats line-endings, you could do them all on multiple lines with a single "var" keyword:
var foo = "this",
bar = "looks",
rotisserie_chicken = "promising";