Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>After reading the result from your ajax call, you are returning some HTML5 elements such as "section". It works nicely in Firefox/Chrome and IE9. However, HTML5 tags are not supported for the version that less than IE9. They cannot recognize HTML5 tags. Please note that not all HTML5 are supported in IE9. Ref: <a href="http://www.impressivewebs.com/html5-support-ie9/" rel="nofollow" title="HTML5 tags in IE9">HTML5 tags in IE9</a></p> <p>For the version less then IE9, you can help them to recognize the HTML5 tags by including javascript fix <a href="https://code.google.com/p/html5shim/" rel="nofollow" title="html5shim">html5shim</a> / from github <a href="https://github.com/aFarkas/html5shiv" rel="nofollow" title="github">html5shiv</a>.<br/> -OR-<br /> Change change the HTML5 tags to div instead.</p> <p><br /> Regarding to fix the loading image, I think we would do this work around.</p> <p>HTML - Preload the loading image to the container and display it</p> <pre><code>&lt;div id="container_leftns_loading" class="container_leftns"&gt; &lt;img src="http://pumpit.in/images/loading123.gif" alt="Loading..." /&gt; &lt;/div&gt; &lt;div id="container_leftns"&gt;&lt;/div&gt; </code></pre> <p>JavaScript </p> <pre><code>$.ajax({ type: "POST", url: "Index.aspx/wmCommSubComm", contentType: "application/json; charset=utf-8", dataType: "json", async: false, cache: false, beforeSend: function () { // use show instead and clear the leftns container $('#container_leftns_loading').show(); $('#container_leftns').html(''); //return false; }, success: function (msg) { // hide the loading image when success $('#container_leftns_loading').hide(); $('#container_leftns').html(msg.d); return false; }, error: function () { // failed request; give feedback to user //$('#Attri_left-div').html('&lt;p&gt;&lt;strong&gt;Oops!&lt;/strong&gt; Try that again in a few moments.&lt;/p&gt;'); } }); </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

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