NIHVIVO-330 new javascript folder and file for tool to merge individuals

This commit is contained in:
ass92 2010-07-13 15:33:06 +00:00
parent d29f950ed2
commit 345689dc76

View file

@ -0,0 +1,16 @@
$(document).ready(function(){
$('#takeuri').submit(function() {
if ($('#uri1').val() == '') {
alert('Please enter a value for Individual URI 1.');
return false;
}
if ($('#uri2').val() == '') {
alert('Please enter a value for Individual URI 2.');
return false;
}
});
});