Modify StyleSheet from JS console

0

Good evening everyone,

My question comes because I can not find a way to modify the style file from the JavaScript console, what I want is to make the input filter visible, I tried for example with $(".dataTables_filter").display = "true"; but it does not seem to work, the element is there but it is not visible, any help? Thanks!

    
asked by Maximiliano Alfonso 20.02.2018 в 01:10
source

1 answer

0

Instead of true try with block or inline-block . In addition, the selector is: $(".dataTables_filter label")

You can also try the entire selector: $("div.task_listing .dataTables_filter label").css("display", "block");

    
answered by 20.02.2018 / 01:29
source