Error using Jquery UI and Bootstrap

2

I'm using Draggable of Jquery UI

What happens is that when I put the element into the content div, I can not remove it anymore

And just remove the css from Bootstrap that it works on.

Follow the JsFiddle

    
asked by anonymous 21.11.2014 / 19:01

1 answer

2

It seems to me that there is a conflict between the jQuery UI and the Boostrap CSS, if changing the z-index will already work.

.imgConteudo {
    z-index: 100;
}

jsFiddle: link

    
21.11.2014 / 19:28