MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
Created page with "→Any JavaScript here will be loaded for all users on every page load.: $('#mw-mywiki-test').html('<div w3-include-html="roller.html"></div> ');" |
No edit summary |
||
| Line 1: | Line 1: | ||
/* Any JavaScript here will be loaded for all users on every page load. */ | /* Any JavaScript here will be loaded for all users on every page load. */ | ||
$('#mw-mywiki-test').html('< | $('#mw-mywiki-test').html('<!DOCTYPE html> | ||
<html> | |||
<head> | |||
<script src='https://cdn.tinymce.com/4/tinymce.min.js'></script> | |||
<script> | |||
tinymce.init({ | |||
selector: '#mytextarea' | |||
}); | |||
</script> | |||
</head> | |||
<body> | |||
<h1>TinyMCE Quick Start Guide</h1> | |||
<form method="post"> | |||
<textarea id="mytextarea">Hello, World!</textarea> | |||
</form> | |||
</body> | |||
</html>'); | |||
Revision as of 06:25, 10 August 2016
/* Any JavaScript here will be loaded for all users on every page load. */
$('#mw-mywiki-test').html('<!DOCTYPE html>
<html>
<head>
<script src='https://cdn.tinymce.com/4/tinymce.min.js'></script>
<script>
tinymce.init({
selector: '#mytextarea'
});
</script>
</head>
<body>
<h1>TinyMCE Quick Start Guide</h1>
<form method="post">
<textarea id="mytextarea">Hello, World!</textarea>
</form>
</body>
</html>');