Difference between revisions of "M365/Home-ENG-Test"
< M365
Jump to navigation
Jump to search
Line 10: | Line 10: | ||
=='''Training Materials by Application'''== | =='''Training Materials by Application'''== | ||
<br> | <br> | ||
+ | |||
+ | // JavaScript code without any framework | ||
+ | <ref>var myImg = document.getElementById('myImage');</ref> | ||
+ | function myMessage() { | ||
+ | alert('your message'); | ||
+ | } | ||
+ | |||
+ | if (myImg.addEventListener) { //addEventListener is the standard method to add events to objects. | ||
+ | myImg.addEventListener('mouseover', myMessage, false); | ||
+ | } | ||
+ | |||
+ | else if (myImg.attachEvent) { //For Internet Explorer | ||
+ | myImg.attachEvent('onmouseover', myMessage); | ||
+ | } | ||
+ | |||
+ | else { //For other browsers | ||
+ | myImg.onmouseover = myMessage; | ||
+ | } | ||
{| class="wikitable" border="1" | {| class="wikitable" border="1" |
Revision as of 15:13, 24 November 2022
M365 Training Materials
Here you'll find a collection of various M365-related training products to support public servants from across the GC. Click on one of the following icons to get started:
Training Materials by Application
// JavaScript code without any framework [1] function myMessage() {
alert('your message');
}
if (myImg.addEventListener) { //addEventListener is the standard method to add events to objects.
myImg.addEventListener('mouseover', myMessage, false);
}
else if (myImg.attachEvent) { //For Internet Explorer
myImg.attachEvent('onmouseover', myMessage);
}
else { //For other browsers
myImg.onmouseover = myMessage;
}
125px | 125px | 125px | |
Nibelungen Bridge to Worms | Worms and its sister cities | Statue of Liberty | New York City |
Alphabetic | Numeric | Date | Unsortable |
---|---|---|---|
d | 20 | 2008-11-24 | This |
b | 8 | 2004-03-01 | column |
a | 6 | 1979-07-23 | cannot |
c | 4.2 | 1492-12-08 | be |
e | 0 | 1601-08-13 | sorted. |
Episode | Date | Summary |
---|---|---|
"The Journey Begins" | January 1, 2010 | Lorem ipsum dolor sit amet, [...] |
"When Episodes Attack" | January 8, 2010 | Lorem ipsum dolor sit amet, [...] |
"So Long" | January 15, 2010 | Lorem ipsum dolor sit amet, [...] |
Training Materials by Type
Here you'll find a collection of learning materials sorted by type to support how you want to learn the various applications of the M365 suite of applications.
New Content!
|
Coming Soon! |
Attributions and Sources
*Attributions and Sources
How to activate your mobile device
- ↑ var myImg = document.getElementById('myImage');