Difference between revisions of "MediaWiki:Common.js"
Line 7: | Line 7: | ||
myElement.innerHTML = '<html> | myElement.innerHTML = '<html> | ||
<head> | <head> | ||
− | <style> | + | <!--<style> |
#map { | #map { | ||
height: 400px; | height: 400px; | ||
width: 100%; | width: 100%; | ||
} | } | ||
− | </style> | + | </style>--> |
</head> | </head> | ||
<div id="map">Hi</div> | <div id="map">Hi</div> |
Revision as of 21:17, 17 April 2018
/* Any JavaScript here will be loaded for all users on every page load. */ /* Google Test */ $(function () { var myElement = document.getElementById('mw-test'); myElement.innerHTML = '<html> <head> <!--<style> #map { height: 400px; width: 100%; } </style>--> </head> <div id="map">Hi</div> </html>'; }());