(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| /** | |
| * Advanced Window Snap | |
| * Snaps the active window to a position within a user-defined grid. | |
| * | |
| * @author Andrew Moore <[email protected]> | |
| * @contributor jballi | |
| * @contributor park-brian | |
| * @contributor shinywong | |
| * @version 1.2 | |
| */ |
| // Takes a URL, param name, and data string | |
| // Sends to the server.. The server can respond with binary data to download | |
| jQuery.download = function(url, key, data) { | |
| $('<form/>') | |
| .attr('action', url) | |
| .attr('method', 'post') | |
| .append($('<input/>') | |
| .attr('type', 'hidden') | |
| .attr('name', key) |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.