From 90aa6ab3f58fa97e5636ed678a2e670b8f350820 Mon Sep 17 00:00:00 2001 From: chicpro Date: Mon, 27 May 2013 13:59:24 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9E=A5=EB=B0=94=EA=B5=AC=EB=8B=88=EC=97=90?= =?UTF-8?q?=EC=84=9C=20=EB=AA=A8=EB=91=90=20=EC=84=A0=ED=83=9D=20=EB=90=98?= =?UTF-8?q?=EC=A7=80=20=EC=95=8A=EB=8D=98=20=EC=98=A4=EB=A5=98=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shop/cartsub.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shop/cartsub.inc.php b/shop/cartsub.inc.php index b70d1f777..77573d2e6 100644 --- a/shop/cartsub.inc.php +++ b/shop/cartsub.inc.php @@ -241,9 +241,9 @@ $(function() { // 모두선택 $("input[name=ct_all]").click(function() { if($(this).is(":checked")) - $("input[name='ct_chk[]']").attr("checked", true); + $("input[name^=ct_chk]").attr("checked", true); else - $("input[name='ct_chk[]']").attr("checked", false); + $("input[name^=ct_chk]").attr("checked", false); }); });