This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://stackoverflow.com/questions/3372962/can-i-remove-the-x-requested-with-header-from-ajax-requests | |
| jQuery.ajax({ | |
| url: yourAjaxUrl, | |
| // 'xhr' option overrides jQuery's default | |
| // factory for the XMLHttpRequest object. | |
| // Use either in global settings or individual call as shown here. | |
| xhr: function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Simple IBAN Format-Plugin | |
| * Easily format IBAN for display use. Replace IBAN inline in a document, or return a formatted IBAN for other uses. | |
| * Created based on the idea of https://github.com/customd/jquery-number | |
| */ | |
| (function ($) { | |
| // jQuery plugin definition | |
| "use strict"; |
OlderNewer