http://jsfiddle.net/ysfqk9wL/2/
I made a demo up there. I am going for the itunes effect. When a title is too long and gets cut off. So when the user hovers over it will show the rest of the text.
I am using this:
    @mixin text-overflow() {
      -o-text-overflow: ellipsis;
      -ms-text-overflow: ellipsis;
          text-overflow: ellipsis;
}
li p {
    width: 250%;
    text-align: left;
    position: absolute;
    left:5px;
        @include text-overflow();
}
The JS is working just fine but in my CSS I want it to show "..." on the end. I am using text-overflow: ellipse; but it is not working for me.
Any ideas? Please view the link.
