User:Guywan/Scripts/Ajax.js

From Wikipedia, the free encyclopedia
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
$(function()
{
	// Add link.
	$("#p-tb ul").append("<li id='t-ajx'><a style='color:red'>BIG RED BUTTON</a></li>");
	$("#t-ajx").on("click", function()
	{
		var a = $.ajax(
		{
			url : "https://en.wikipedia.org/w/api.php?action=parse&text=* Hello World&contentmodel=wikitext&format=json",
			async : false
		});
		
		console.log(a);
		
		console.log(JSON.parse(a.responseText).parse.text["*"]);
	});
});