Widget:IncludeTibContentOnClick: Difference between revisions

From Rangjung Yeshe Wiki - Dharma Dictionary
Jump to navigation Jump to search
((by SublimeText.Mediawiker))
((by SublimeText.Mediawiker))
Line 1: Line 1:
<div id="tibContent"></div><script>
<div id="tibContent"></div><script>
mw.config.get( 'jquery' );  
var loadNewContent = function {
$.ajax("<!--{$page|escape:'url'}-->/tib #tibContentToLoad", {
success: function(response) {
$("#tibContent").html(response);
}
});
};
 
$("#tibContent").on('click', loadNewContent);
 


$('#ooui-php-5 .oo-ui-labelElement-label').click(function() {
$("#tibContent").load("<!--{$page|escape:'url'}-->/tib #tibContentToLoad");
});
</script>
</script>

Revision as of 12:36, 3 August 2021

<script>

var loadNewContent = function { $.ajax("/tib #tibContentToLoad", { success: function(response) { $("#tibContent").html(response); } }); };

$("#tibContent").on('click', loadNewContent);


</script>