sweetalert icon indicating copy to clipboard operation
sweetalert copied to clipboard

Links?

Open gbb104 opened this issue 2 years ago • 0 comments

I am creating a small project based on someone else's work and I would like to give them credit. The links won't work correctly, and this is my code so far:

const el = document.createElement('div');
  el.innerHTML = "<a href='profile'>@profile</a>";
  swal({
    title: "A Bit of info",
    content: "This code was created by " + el + ".",
    icon: "info",
  });

and this is the output: Output It doesn't show the link, and I don't know why.

gbb104 avatar Nov 13 '23 18:11 gbb104