support.html (682B)
1 <!-- This Source Code Form is subject to the terms of the Mozilla Public 2 - License, v. 2.0. If a copy of the MPL was not distributed with this 3 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 4 5 <!DOCTYPE html> 6 <html> 7 <head> 8 <meta http-equiv="content-type" content="text/html; charset=UTF-8"> 9 <script type="text/javascript"> 10 function show() { 11 var results = /\?topic=(.+)$/.exec(window.document.location); 12 var topic = decodeURIComponent(results[1].replace(/\+/g, " ")); 13 var node = document.getElementById("topic"); 14 15 node.textContent = topic; 16 } 17 </script> 18 </head> 19 20 <body onload="show()"> 21 <div id="topic"></div> 22 </body> 23 </html>