Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p> <strong>Update:</strong> This issue has been fixed in the latest NuGet package. I've posted another answer to reflect this. <a href="https://stackoverflow.com/a/15539422/714309">https://stackoverflow.com/a/15539422/714309</a></p> <hr> <p>In <code>jquery.unobtrusive-ajax.js</code>, find and replace these four lines:</p> <ol> <li><p><code>$("a[data-ajax=true]").live("click", function (evt) {</code></p> <p><code>$(document).on("click", "a[data-ajax=true]", function (evt) {</code></p></li> <li><p><code>$("form[data-ajax=true] input[type=image]").live("click", function (evt) {</code></p> <p><code>$(document).on("click", "form[data-ajax=true] input[type=image]", function (evt) {</code></p></li> <li><p><code>$("form[data-ajax=true] :submit").live("click", function (evt) {</code></p> <p><code>$(document).on("click", "form[data-ajax=true] :submit", function (evt) {</code></p></li> <li><p><code>$("form[data-ajax=true]").live("submit", function (evt) {</code></p> <p><code>$(document).on("submit", "form[data-ajax=true]", function (evt) {</code></p></li> </ol> <p>You can also generate a new <code>jquery.unobtrusive-ajax.min.js</code> using WebGrease. From the Command Prompt, change to your solution folder and enter this command (assuming your project folder is called <code>Web</code>):</p> <pre class="lang-js prettyprint-override"><code>packages\WebGrease.1.3.0\tools\WG.exe -m -in:Web\Scripts\jquery.unobtrusive-ajax.js -out:Web\Scripts\jquery.unobtrusive-ajax.min.js </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.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      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