jameslafferty / MailChimp-Widget

A simple MailChimp Widget Plugin for WordPress.
GNU General Public License v2.0
18 stars 13 forks source link

W3C Validation #17

Open RalphMRivera opened 12 years ago

RalphMRivera commented 12 years ago

Line 300 of _ns_widgetmailchimp.class.php is not validating properly via the W3C's validator.

Ideally, this:

<script>jQuery [...]

Should read as this:

<script type='text/javascript'>jQuery [...]

kalchas commented 12 years ago

There are some other markup issues, but this isn't a problem anymore with html5. The older html/xhtml specs are going (rather rapidly) by the wayside. In this case, it kinda makes sense, given that in practice you don't put anything other than javascript into script elements.

On Sat, Dec 17, 2011 at 10:58 AM, RalphMRivera < reply@reply.github.com

wrote:

Line 300 of _ns_widgetmailchimp.class.php is not validating properly via the W3C's validator.

Ideally, this:

<script>jQuery [...]

Should read as this:

<script type='text/javascript'>jQuery [...]


Reply to this email directly or view it on GitHub: https://github.com/kalchas/MailChimp-Widget/issues/17