Tagged Questions
13
votes
2answers
270 views
What validation does MySQL do when strict mode is enabled?
I was quite surprised when MySQL allowed me to insert a NULL into a field that was created with NOT NULL. I did some research and discovered how to enable strict mode. However, I am not quite sure ...
6
votes
2answers
3k views
Disable “use the function form of use strict” but keep the “Missing 'use strict' statement” warning
I am using jslint to validate my code.
I have "use strict" on all my pages.
How can I disable the message "use the function form of 'use strict'" but keep the "Missing 'use strict' statement" warning, ...
0
votes
1answer
205 views
Validating example code snippets in a textarea using strict XHTML
I am currently trying to post some code snippets inside of a textarea, within a strict XHTML document. I cannot for the life of me get these snippets to pass validation. I have a perfect xhtml strict ...
2
votes
6answers
798 views
XHTML Strict is not valid because of html tags inside Javascript
I'm creating a site using XHTML Strict markup. Inside the html I need to put a js script:
<script type="text/javascript">
$(document).ready(function () { $('#nav ...