Forum Moderators: open
Here whenever it reaches image tag in the page it starting to load the image from that src.
The original srcs are in one server and new srcs are in another server.
Here it is displaying first image and then it is replacing that image with new image.I don't want to display original image.
So here two requests are going for two servers. It takes some time to display first one and some time to second image which is required.
We don't want to display original src's image.
If we don't mention src at all we don't get this problem.But it is required. By using that one only we are going to get new src.
How can we stop first request means when it reaches image tag it should not get that image from that original src.
We are very much interested on new srcs which are fetched from another server.
How can we stop image tag to load src when it reaches that image tag.
If I make visibility value to none it will get first source image and as well as second image from two different servers.
only one request should process either from first or second server.