vote up 1 vote down star

How to include javascript in HTML emails - We need it for expanding and collapsing of the content in the HTML email.

flag

0% accept rate

4 Answers

vote up 11 vote down

I don't think that is possible in an email, nor should it be. There would be major security ramifications.

link|flag
vote up 10 vote down

Do not depend on this. Any good mail client will not support executable code within an email. Any knowledgeable user will not use a client that does.

link|flag
vote up 1 vote down

Agree completely with Bryan and others.

Instead, consider using multiple sections in your email that you can jump to using links and anchors (the 'a' tag). I think that you can emulate the behavior you want by including multiple copies of the text further down in your email. This is a bet messy though, so you could just have sets of anchors that link to each other and allow you to move back in forth between the 'summary' section and the 'expanded' one.

Example:

<a href="#section1">Jump to section!</a>
<p>A bunch of content</p>
<h2 id="section1">An anchor!</h2>

Clicking on the first link will move focus to the sub-section.

link|flag
Note that you don't have to use <a name="foo"> to put down an anchor for the link - just having an element with the proper id attribute will work. So if you have <a href="#section1">Jump to section!</a>, then later on when that section start you just need something like <h1 id="section1">Section 1</h1>. – Xanthir Jul 6 at 17:47
Thanks, modified the example to reflect that. – Dana the Sane Jul 6 at 18:10
vote up 2 vote down

Just as a warning, many modern email browsers have JavaScript disbaled for incoming emails as it can cause security flaws. This means that many of the people you are emailing may not be able to use the content.

PS. Didn't see above post's at time of posting. My bad.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.