question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Transition: Element is no longer attached to DOM. Unable to animate.

See original GitHub issue

I’m unable to make a popup appear when hovering on an item. I’m trying to mimic the second demo of the menu collection.

Here is my code: (Using Jade)

nav
      .ui.text.menu
        .item
          img(src='images/new-school.jpg')
        a.browse.item Browse Courses
          i.material-icons arrow_drop_down
      .ui.special.popup
        .ui.three.column.relaxed.divided.grid
          .column
            h4.ui.header Business
            .ui.link.list
              a.item Design & Urban Ecologies
              a.item Fashion Design
              a.item Fine Art
              a.item Strategic Design
          .column
            h4.ui.header Liberal Arts
            .ui.link.list
              a.item Anthropology
              a.item Economics
              a.item Media Studies
              a.item Philosophy
          .column
            h4.ui.header Social Sciences
            .ui.link.list
              a.item Food Studies
              a.item Journalism
              a.item Non Profit Management
var initialize = {
  popup: function() {
    $('nav .menu .browse').popup({
      popup: '.special.popup',
      inline: true
    });
  }
}
initialize.popup();

And I’m getting this in the console: semantic.min.js:17 Transition: Element is no longer attached to DOM. Unable to animate. scale in AtDhVaAnNkCsE

Issue Analytics

  • State:closed
  • Created 7 years ago
  • Comments:11

github_iconTop GitHub Comments

38reactions
lukesnowdencommented, Jul 27, 2017

Occurs when transition.css is not being loaded in

4reactions
swordlingcommented, Apr 25, 2016

I was able to fix it. It turns out you cannot use the ‘Amazon’ theme under the transitions variable in the themes.config file. Changing that back to default fixed it.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Transition: Element is no longer attached to DOM. Unable to ...
I got the same error when I tried to just import the dropdown and transition JS & CSS files. You might be able...
Read more >
element is no longer attached to DOM. Unable to animate.
element is no longer attached to DOM. Unable to animate. Add Answer | View In TPC Matrix. Technical Problem Cluster First Answered On...
Read more >
Transition: Element is no longer attached to DOM. Unable to ...
Got stucked at the same place. In my case I use webpack to build semantic UI parts in a bundle from semantic-ui-less npm...
Read more >
webdriver - "Element is no longer attached to the DOM ...
openqa.selenium.StaleElementReferenceException : Element is no longer attached to the DOM" error and the test fails. The code is the following:
Read more >
Animation transitions and triggers - Angular
As a rule of thumb consider that any element being added to the DOM by Angular passes via the :enter transition. Only elements...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found