I'm having a HTML document which has images to local files like:
<img src="file:///C:/...
How can I select all images with file:// in the src tag?
I'm having a HTML document which has images to local files like:
<img src="file:///C:/...
How can I select all images with file:// in the src tag?
Use the Attribute Starts With Selector.
$('img[src^=file:///]')