ABM Abdul Muttalib
ABM Abdul Muttalib

Reputation: 205

How to add Style on document.getElementById()

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

Answers (1)

Ashish Balchandani
Ashish Balchandani

Reputation: 1266

Use below code to center align.

document.getElementById("documentIframe").style.textAlign = "center";
document.getElementById("documentIframe").style.margin = "0px auto";

Upvotes: 9

Related Questions