Reputation: 205
I have a loader image that is displaying in the left corner in my iFrame however, I am trying to display in center. Could you please advise how can add style in the following code:
var ShowLoader = function() {
document.getElementById("mainIframe").style.display = "none";
document.getElementById("documentIframe").src = "http://localhost:63902/images/loading.gif";
}
Upvotes: 2
Views: 37928
Reputation: 1266
Use below code to center align.
document.getElementById("documentIframe").style.textAlign = "center";
document.getElementById("documentIframe").style.margin = "0px auto";
Upvotes: 9