All pastes #2068515 Raw Edit

fdfdwfda

public javascript v1 · immutable
#2068515 ·published 2011-05-24 16:02 UTC
rendered paste body
function copyrow() {    $("#assigned_roles tr:last").clone().find("select").each(function() {        var i = $(this).attr('name').match('/\[0-9]+/'); alert(i);        $(this).attr({'selectedIndex': '-1',                      'name' : $(this).attr('name').replace('/\[0-9]+/',i+1),                      'id'   : $(this).attr('id').replace('/\[0-9]+/',i+1)});    }).end().appendTo("#assigned_roles");}