Jump to content

Widget:GenderSelector

From RiskiPedia
Revision as of 23:07, 30 January 2025 by User (talk | contribs)

<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!' ); } };

mw.loader.using( [ 'oojs-ui-core' ], HelloWorld.init );

</script>