Difference between revisions of "Sandbox"

From Organic Design wiki
m
m
 
(50 intermediate revisions by the same user not shown)
Line 1: Line 1:
<html>
+
{{video|odysee|ukraine-crisis-what-you-re-not-being/9af844f8248198fa22ae472d7002423e3389a3ec|300|right}}
<input id="param1" />
 
<input id="param2" />
 
<input type="button" id="send-email" value="Send" />
 
<script>
 
$('#send-email').click(function() {
 
  var param1 = $('#param1').val();
 
  var ask = '{{#ask:[[Category:' + param1 + ']]|link=none|sep=<br>|limit=500}}';
 
  console.log('Sending query: ' + ask);
 
  $.ajax({
 
    type: 'post',
 
    url: mw.util.wikiScript('api'),
 
    dataType: 'json',
 
    data: {
 
      action: 'parse',
 
      text: ask,
 
      contentmodel: 'wikitext'
 
    },
 
    success: function(json) {
 
      console.log(json);
 
    }
 
  });
 
});
 
</script>
 
</html>
 

Latest revision as of 13:50, 17 February 2023