Jump to content

Widget:GenderSelector

From RiskiPedia
Revision as of 19:34, 12 February 2025 by Gavinandresen (talk | contribs) (Remove call to debugger;)

<Script lang="javascript">

var HelloWorld = {

init: function () { var button = new OO.ui.ButtonWidget( { label: 'Click me!' } ); button.on( 'click', HelloWorld.sayHello ); $( '.hello-world' ).html( button.$element ); },

sayHello: function () { alert( 'Hello world!' ); } };

window.addEventListener('load', function() {

   mw.loader.using( [

'oojs-ui-core'

   ], HelloWorld.init );

});

</script>