Hi, I want to allow users make a search and then show the results on a list within the same sweetalert modal window. How can I do that? Inserting in complex DOM nodes feels quite difficult, or I just couldn't manage it :)
You can generate a node for the list like so:
const list = document.createElement('ul');
const listItem = document.createElement('li');
listItem.innerHTML = 'I am your content';
list.appendChild(listItem);
then in your call for sweet alert:
content: list,
Most helpful comment
You can generate a node for the list like so:
const list = document.createElement('ul');const listItem = document.createElement('li');listItem.innerHTML = 'I am your content';list.appendChild(listItem);then in your call for sweet alert:
content: list,