hi
can any one help
give me sample for browsing file.
when i browse the file
in jquery how to assign selected path location to string variable.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Pradeep ShetPosted Jul 24, 2014, 2:40 PM
Ravi KumarPosted Jul 25, 2014, 12:00 AM
can you tell me.
how to do another way.
Ravi KumarPosted Jul 24, 2014, 8:39 AM
i want selected file location(url) path.
Pradeep ShetPosted Jul 24, 2014, 2:42 AM
find the below code.
$(document).ready(function(){
$('#btnclick').click(function () {
var path1 = $('#fileupload1').val();
alert(path1);
});
});
Hope this will help you.