indentation.deblan.org/web/js/main.js
2015-03-02 21:30:17 +01:00

9 lines
135 B
JavaScript

$('body').on(
'mousemove',
function() {
$('form').each(function() {
$(this).attr('action', $(this).data('action'));
});
}
);