$('.img1 img').attr('src');
//Change the img property using jQuery's attr method
$("#myImage").attr("src", 'img/new-image.jpg');
$('#imageContainerId').prop('src')
$('img').attr(src);
readTextFile("file:///C:/your/path/to/file.txt");
function readTextFile(file)
{
var rawFile = new XMLHttpRequest();
rawFile.open("GET", file, false);
rawFile.onreadystatechange = function ()
{
if(rawFile.readyState === 4)
{
if(rawFile.status === 200 || rawFile.status == 0)
{
var allText = rawFile.responseText;
alert(allText);
}
}
}
rawFile.send(null);
}