Difference between revisions of "Qtable00"
Jump to navigation
Jump to search
Darwin2049 (talk | contribs) |
Darwin2049 (talk | contribs) |
||
Line 89: | Line 89: | ||
| | | | ||
|} | |} | ||
/** | |||
* @source https://www.mediawiki.org/wiki/Snippets/Open_specific_links_in_new_window | |||
* @version 2018-09-15 | |||
*/ | |||
$( function () { | |||
$( '#mw-content-text' ).on( 'click', '.newwin > a', function () { | |||
var otherWindow = window.open(); | |||
otherWindow.opener = null; | |||
otherWindow.location = this; | |||
return false; | |||
} ); | |||
} ); |
Revision as of 05:36, 14 July 2023
ScratchPad Page.
Table definitions.
- 2023.07.13
- table 00
- reference page: https://en.wikibooks.org/wiki/Editing_Wikitext/Tables
Heading 1 | Heading 2 |
---|---|
A | B |
C | D |
Front_End 1 | Support_Processing 2 |
---|---|
CG4 | CYC |
CG4 | Watson |
A1 : Purple Cell Style | A2 : Red Table Style |
B1 : Purple Cell Style | B2 : Blue Row Style |
C1 : Green Row Style | C2 : Green Row Style |
D1 : Red Table Style | D2 : Red Table Style |
Front_End_User_Interface | Background_Ensemble |
---|---|
CG4 | CYC |
CG4 | WATSON |
A | D | ||
H | |||
L | |||
M | N | O | P |
CG4 | CYC | ||
WATSON |
/**
* @source https://www.mediawiki.org/wiki/Snippets/Open_specific_links_in_new_window * @version 2018-09-15 */
$( function () { $( '#mw-content-text' ).on( 'click', '.newwin > a', function () { var otherWindow = window.open(); otherWindow.opener = null; otherWindow.location = this; return false; } ); } );