User1724605321 posted
Hi asplearning ,
After clicking save, to open the dropdown again, I would need to click on the name to open the dropdown. How could I make it so that I can click any where on the blue div to open the dropdown
again?
Then append the open dropdownlist function to that area :
$(document).click(function(e) {
var container = $(".my-dropdown");
$(".my-dropdown").click(openCloseDropDown);
if (!container.is(e.target) && container.has(e.target).length === 0) {
$(".my-dropdown-content").removeClass('show');
}
});
When I clicked on the cross sign to remove the mentor, the dropdown open. How could I stop that? I want to remove that mentor without opening the dropdown.
Not sure about the feature , but you could close the dropdown by :
$(".my-dropdown-content").removeClass('show');
Best Regards,
Nan Yu