source:
main/waeup.kofa/trunk/layout/static/js/kofa-button-rowadd.js
@
11493
Last change on this file since 11493 was 11493, checked in by , 11 years ago | |
---|---|
File size: 261 bytes |
Line | |
---|---|
1 | $("button.rowadd").click(function (evt) { |
2 | /* Do not submit the form really */ |
3 | evt.preventDefault(); |
4 | /* Add first .form-field after last .form-field... */ |
5 | $(".variable-form:last").after( |
6 | $(".variable-form:first").clone().hide().fadeIn()); |
7 | }); |
Note: See TracBrowser for help on using the repository browser.