Get image src javascript:
In this article I will show you how to get the src attribute of the image and save the path.
<img id="example" src="/images/example.png">
Solution:
To get the path of the picture using the getAttribute.
var path = document.getElementById('imgBannner').getAttribute("src");
$('#Path').val(path);
To get the absolute path document.getElementById("imgBanner").src will return like this,
http://www.example.com/images/example1.jpeg
Post your comments / questions
Recent Article
- Fix-Gradient effect turning to gray in after effects
- How to blur an image in python?
- ModuleNotFoundError: No module named 'whois' in Python GoviralHost Without Terminal
- How to Convert Image to Pencil Sketch in Python?
- AttributeError: module 'urllib' has no attribute 'request' - Python
- How to Extract audio from video files using python?
- PermissionError: [Errno 13] Permission denied: 'shampoo_sales.csv' - Python
- [WinError 145] The directory is not empty: 'FolderPath' - Python
Related Article