18 lines
No EOL
405 B
JavaScript
18 lines
No EOL
405 B
JavaScript
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
|
|
|
|
|
|
|
|
$(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;
|
|
}
|
|
});
|
|
|
|
}); |