Remove animation from processing div?

Remove animation from processing div?

M1LeadM1Lead Posts: 2Questions: 1Answers: 0

Description of problem:
The new animation that is appended to the processing string conflicts with my existing animation, there is no class attached to the DIV that is inserted below the message to target, is there another way to turn this off without using events and inserting my own loading DIV into the page?

Answers

  • M1LeadM1Lead Posts: 2Questions: 1Answers: 0

    Just realized I could use the following CSS to hide the added div's:

        div.dataTables_processing>div:last-child {
            display: none;
        }
    
Sign In or Register to comment.