Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
DARK-art108
GitHub Repository: DARK-art108/Cotton-Leaf-Disease-Detection
Path: blob/main/static/js/main.js
78 views
1
$(document).ready(function() {
2
$('#image').on('change', function() {
3
let fileName = $(this).val();
4
let slash = fileName.lastIndexOf('/');
5
if (fileName.lastIndexOf('\\') > slash) slash = fileName.lastIndexOf('\\');
6
$(this).next('.custom-file-label').text(fileName.substring(slash + 1));
7
})
8
});
9