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
| /* | |
| * _x | |
| * Ultra-simple ajax. Same syntax of $.ajax(). | |
| * | |
| * Simplified from: | |
| * Twix v1.0 - a lightweight library for making AJAX requests. | |
| * Author: Neil Cowburn (neilco@gmail.com) | |
| * Copyright (c) 2013 Neil Cowburn (http://github.com/neilco/) | |
| */ |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title></title> | |
| <script type="text/javascript" src="http://codeorigin.jquery.com/jquery-2.0.3.min.js"></script> | |
| <script src="preload.js"></script> | |
| <script> | |
| var text; | |
| //var text, data; |
NewerOlder