Questions about this topic? Sign up to ask in the talk tab.

Difference between revisions of "Template:Programming"

From NetSec
Jump to: navigation, search
(Created page with "<center> <html> <script type="text/javascript"> function prog_toggle() { $('#prog_display_text').html($('#prog_hidden_display').html()); $('#prog_hidetext').html($('#prog_h...")
 
(Replaced content with "<center> <div style="width:40%;">{{PAGENAME}} is part of a series on programming.<br />")
 
(27 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 
<center>
 
<center>
<html>
+
<div style="width:40%;">{{PAGENAME}} is part of a series on [[programming]].<br />
<script type="text/javascript">
+
function prog_toggle() {
+
  $('#prog_display_text').html($('#prog_hidden_display').html());
+
  $('#prog_hidetext').html($('#prog_hide_msg').html());
+
  $('#prog_hidetext').attr('onClick','prog_vape();');
+
}
+
function prog_vape() {
+
  $('#prog_display_text').html('');
+
  $('#prog_hidetext').html($('#prog_show_msg').html());
+
  $('#prog_hidetext').attr('onClick','prog_toggle();');
+
}
+
</script></html>
+
<div style="width:40%; border: 1px solid #000;">{{PAGENAME}} is part of a series on [[programming]].<br />
+
<html><a id='prog_hidetext' onclick="toggle();"><b>[ Decompile ]</b></a></html><br />
+
<div id='prog_display_text'></div>
+
</div>
+
 
+
<div id='prog_hidden_display' style='visibility:hidden;'>
+
LOLCODE
+
</div>
+
<div id='prog_hide_msg' style='visibility:hidden;'><b>[ Compile ]</b></div>
+
<div id='prog_show_msg' style='visibility:hidden;'><b>[ Decompile ]</b></div>
+
 
+
</center>
+

Latest revision as of 15:51, 18 June 2016

Programming is part of a series on programming.