How can i run jquery functions on html result from server side processing?

How can i run jquery functions on html result from server side processing?

SeppastienSeppastien Posts: 2Questions: 1Answers: 1

I have a server side processing wich is working, but how can i apply jquery external plugins on the table, like fancybox or tooltips?

This question has an accepted answers - jump to answer

Answers

  • SeppastienSeppastien Posts: 2Questions: 1Answers: 1
    edited August 2015 Answer ✓

    found it
    in the dom ready function

    var tableObj.DataTable()
    tableObj.on( 'draw', function () {
       //what you want to run after every redraw
    } );
    
This discussion has been closed.