Skip to content

Instantly share code, notes, and snippets.

@marocchino
Last active December 17, 2015 23:29
Show Gist options
  • Save marocchino/5689411 to your computer and use it in GitHub Desktop.
Save marocchino/5689411 to your computer and use it in GitHub Desktop.
var elements = $("searchForm").elements,
count = 28;
for(var i = 0; i < elements.length; i++){
var element = elements[i];
if(element.name.match(/[가-힣]/) && (element.alt === "" || element.value === "")) {
count--;
if(count < 2) {
gfn_alertMsg("조회건수외 두개 이상 입력하시기 바랍니다.", "W");
return;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment