[eluser]Mitja[/eluser]
Code:
<tr>
<td class="arrangementPluspayments">
<table class="arrangementPluspayment">
<tr><td>Fotka: <?php if (isset($error_pluspayment)) echo $error_pluspayment;?><input type="file" id="file" name="pluspayment_title_photo" /></tr>
<tr><td>Opis: <br /><textarea name="pluspayment_description"></textarea></tr>
</table>
</td>
</tr>
<tr><td><a href="[removed]addArrangementPluspayment()">[+] dodaj novo</a></td></tr>
JS code
Code:
var number = 1;
function addArrangementPluspayment() {
var pluspayment = $(".arrangementPluspayment:first").clone(true);
$(pluspayment).children().children("input").val("");
$(pluspayment).children().children("input").name = 'pluspayment_title_photo' + number;
$(".arrangementPluspayments").append(pluspayment);
number++;
}