source:
main/waeup.kofa/trunk/layout/static/js/kofa-button-rowadd.js
@
11587
Last change on this file since 11587 was 11493, checked in by , 11 years ago | |
---|---|
File size: 261 bytes |
Rev | Line | |
---|---|---|
[11052] | 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... */ | |
[11493] | 5 | $(".variable-form:last").after( |
6 | $(".variable-form:first").clone().hide().fadeIn()); | |
7 | }); |
Note: See TracBrowser for help on using the repository browser.