diff --git a/webapp/web/js/jenaIngest/ingestUtils.js b/webapp/web/js/jenaIngest/ingestUtils.js new file mode 100644 index 000000000..9148cc7c7 --- /dev/null +++ b/webapp/web/js/jenaIngest/ingestUtils.js @@ -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; + } + }); + +}); \ No newline at end of file