チェックされた行の配列をカラーボックスに転送したいのですが、次のコードは機能しません。
$(function() {
var kid = $("input[type=checkbox][checked]").each(function(i) {
var arr = [];
arr[i] = $(this).val();
});
$("#kontakte_bezButton1_{kontakte_bez:rowNumber}").colorbox({
href:"testpage1.php?kid=" + arr,
iframe:true,
innerWidth:850,
innerHeight:400,
opacity:0.1,
overlayClose:false,
});
});