Note that there are some explanatory texts on larger screens.

plurals
  1. POJquery Serialize not working only on IE
    primarykey
    data
    text
    <p>With this I listed my codes its working fine in all browsers but not in IE. I searched the stack overflow for solutions still i could not fix. please can some one help me please $(this).serialize() returning empty in IE </p> <pre><code>$('Form#UserTripSearch').live('submit',function() { $('#NavDetailHead12').html(HugeLoading);// for loader image alert($(this).serialize()); </code></pre> <p>// needs to return => type=1&amp;sortby=desc&amp;status=paid&amp;name=peter</p> <pre><code> var fullurl = $(this).attr('action')+'/'+$(this).serialize(); fullurl1= fullurl.replace(/&amp;/g, "/"); fullurl2= fullurl1.replace(/=/g, ":"); // fullurl2 =&gt; sitename.com/type:1/sortby:desc/status:paid/name:peter $.ajax({ type: "GET", url: fullurl2, data: "ajax=true", success: function(data) { $('#NavDetailHead12').html(data); } }); return false; }); </code></pre> <p>HTML CODE: </p> <pre><code>&lt;form action="sitename/search" method="get" id="UserTripSearch"&gt; &lt;select id="UserType" name="type"&gt; &lt;option value="1"&gt;User&lt;/option&gt; &lt;option value="2"&gt;Member&lt;/option&gt; &lt;option selected="selected" value="3"&gt;Non Member&lt;/option&gt; &lt;/select&gt; ..... &lt;input type="text" id="UserName" placeholder="First name, Username" class="TextfiledCommon" name="name"&gt; &lt;div style=" float:left"&gt; &lt;span class="button"&gt; &lt;span&gt; &lt;input type="submit" value="Search" id="button" name="button"&gt; &lt;/span&gt; &lt;/span&gt; &lt;/div&gt; &lt;/form&gt; </code></pre> <p>Note: My HTML is Fine..</p>
    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