Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

I\'m creating a dynamic popup menu whose contents depends on the state of what t

ID: 650531 • Letter: I

Question

I'm creating a dynamic popup menu whose contents depends on the state of what the user clicked on. Is it considered a better practice to create a template menu in html and modify which options are displayed in javascript, or to create everything in javascript on the fly? I'm using jQuery.

code example:

HTML:

<div id="menuTemplate" class="menu">
<div class="opt1">Option 1</div>
<div class="opt2">Option 2</div>
</div>
...
Javascript:

showMenu = function (state) {
var menu = $("#menuTemplate").clone(true).removeAttr("id");
if (state) {
    menu.find(".opt1").show();
    menu.find(".opt2").hide();
}
// the rest of the function
}
or

Javascript:

showMenu = function (state) {
var menu = $("<div class='menu'></div>");
if (state) {
    menu.append($("<div class='opt1'>Option 1</div>"));
} else {
    menu.append($("<div class='opt2'>Option 2>/div>"));
}
// the rest of the function
}

Explanation / Answer

It depends upon the requirement: if the options are going to be limited then I would suggest going with show/hide functionality, but if in the future these values require an asynchronous request then refactoring it will be painful.

Moreover, in the second code sample, please don't append entire html in menu: create a div element and add css class to it. This way it is more readable and maintainable. for eg

newdiv = document.createElement('div');
newdiv.className = 'cssClass';
menu.append(newdiv);

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote