Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Solved. </p> <p>Reading <a href="http://groups.google.com/group/jquery-en/browse_thread/thread/58a9cbc1068d28c0/eb4bedb2cc36b126?pli=1" rel="nofollow">http://groups.google.com/group/jquery-en/browse_thread/thread/58a9cbc1068d28c0/eb4bedb2cc36b126?pli=1</a></p> <p>I added a conditional script</p> <pre><code>&lt;head&gt; &lt;!--[if IE]&gt; &lt;script &gt; document.createElement("section"); &lt;/script &gt; &lt;![endif]--&gt; </code></pre> <p><a href="http://plungjan.name/test/testform_validation.html" rel="nofollow">http://plungjan.name/test/testform_validation.html</a></p> <p>What you need to do is to append to an element understood by IE.</p> <p>If you do not want the conditional script, add a div to the end of the page and append to that instead like here: <a href="http://plungjan.name/test/testformvalidation.html" rel="nofollow">http://plungjan.name/test/testformvalidation.html</a></p> <hr> <p><strong>Other issue</strong>: I got </p> <pre><code>Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1) Timestamp: Tue, 17 May 2011 13:15:29 UTC Message: Unexpected call to method or property access. Line: 5569 Char: 5 Code: 0 URI: http://code.jquery.com/jquery-1.6.1.js </code></pre> <p>Seems the finally is not supported</p> <p>When I Added <code>catch(e) {}</code> before the finally - error gone </p> <pre><code>resolveWith: function( context, args ) { if ( !cancelled &amp;&amp; !fired &amp;&amp; !firing ) { // make sure args are available (#8421) args = args || []; firing = 1; try { while( callbacks[ 0 ] ) { callbacks.shift().apply( context, args ); } } catch(e) { /* ADDED BY ME */ } finally { fired = [ context, args ]; firing = 0; } } return this; }, </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload