PietjePuk Posted December 12, 2018 Share Posted December 12, 2018 Hello, I can't find any examples/answers on how to add HTML elements like a dropdown. Any help on getting them into my game would be usefull because i haven't found anything usefull thanks, Pietje Link to comment Share on other sites More sharing options...
wclarkson Posted December 13, 2018 Share Posted December 13, 2018 I haven't written the part for dropdowns yet, but here is the part on textInput https://phasergames.com/phaser-3-input-text-form-ui-part-1/ Link to comment Share on other sites More sharing options...
YASHNIT Posted January 19, 2019 Share Posted January 19, 2019 In both examples above, we have only inserted some text/HTML at the beginning/end of the selected HTML elements. However, both the append() and prepend() methods can take an infinite number of new elements as parameters. The new elements can be generated with text/HTML (like we have done in the examples above), with jQuery, or with JavaScript code and DOM elements. In the following example, we create several new elements. The elements are created with text/HTML, jQuery, and JavaScript/DOM. Then we append the new elements to the text with the append() method (this would have worked for prepend() too) : function appendText() { var txt1 = "<p>Text.</p>"; // Create element with HTML var txt2 = $("<p></p>").text("Text."); // Create with jQuery var txt3 = document.createElement("p"); // Create with DOM txt3.innerHTML = "Text."; $("body").append(txt1, txt2, txt3); // Append the new elements } Try it Yourself » Link to comment Share on other sites More sharing options...
mypetclinic Posted February 16, 2022 Share Posted February 16, 2022 The docs helped me a lot in enhancing my Knowledge..,Thank You .I want to share some information about Pet Consulation in Vizag Link to comment Share on other sites More sharing options...
pothgaal Posted February 16, 2022 Share Posted February 16, 2022 Thanks for posting the best information and the blog is very helpful. I want to share about Hyderabad Sweets Shop Link to comment Share on other sites More sharing options...
Recommended Posts