
Untitled
By: a guest on
May 5th, 2012 | syntax:
None | size: 0.67 KB | hits: 12 | expires: Never
downloading a file using jquery stop browser following?
$('#4').change(function () {
var name = this.value;
if (name !== "") {
if (confirm("Are you sure you want to download " + name)) {
$.ajax({
url: '/uploads/4/' + name,
type: 'HEAD',
error: function () { },
success: function () {
window.location.href = '/uploads/4/' + name;
}
});
}
}
});
success: function () {
window.open(window.location.host+ '/uploads/docs/' + name );
}