1
I have the following situation: When I make the request from my bank, my tags <img>
comes with the attribute src
filled, is it possible for me to perform a prepend
in the same?
For example: <img src="meuArquivo.jpg">
, and via jQuery I enter the path before the "myfile.jpg"?
I understand it as something like this:
var meuCaminho = "C:/"
$('img').attr('src').prepend(meuCaminho);
But I don’t think it’s functional.
I don’t understand. First, the
src
image can’t be that way. And second, put an example of how you want it to stay yourimg
.– Diego Souza
edited the question, take a look
– Marcos Henrique