Hey guys I'm showing a loading indicator while some external iframes are loaded with the following code :
<html>
<head>
<title>Loading iframe</title>
</head>
<script>
function loading_iframe(){
document.getElementById('loading_iframe').style.display = "none";
document.getElementById('loading').style.display = "";
document.getElementById('loading_iframe').onload = function(){
document.getElementById('loading').style.display = "none";
document.getElementById('loading_iframe').style.display = "";
}
}
</script>
<body>
<iframe id="loading_iframe" src="iframe.html" width="800" height="100"></iframe>
<div id="loading">Loading...</div>
<script>
loading_iframe();
</script>
Problem is I'm running around 50 mini iframes per page and I don't fancy rewriting the code above to match each iframe id lol ... yes I'm that much of a newbie at js haha
Is there a way I could match each iframe id with a regex example loading_iframe1 loading_iframe2 loading_iframe3
Hope that made sense?
Any ideas