Hi,
When I use sUrl for oLanguage and try to append text to table_filter, the text does not appear.
When I use other options of oLanguage (e.g.: sProcessing), the text appears just fine.
Please help!
TIA,
Dror
When I use sUrl for oLanguage and try to append text to table_filter, the text does not appear.
When I use other options of oLanguage (e.g.: sProcessing), the text appears just fine.
<!DOCTYPE html> <html> <head> <title></title> <script src="js/jquery-1.8.3.min.js" type="text/javascript"></script> <script src="js/jquery-ui-1.9.2.custom.min.js" type="text/javascript"></script> <script src="js/jquery-dataTables-1.9.4.min.js" type="text/javascript"></script></head> <body> <table id="table"> <thead> <tr><th>th</th></tr> </thead> <tbody> <tr><td>td</td></tr> </tbody> </table> <script type="text/javascript"> var audit = $("#table").dataTable({ "oLanguage": { // "sUrl": "js/dataTables.english.txt" // Uncomment this for text below to appear } }); // Add text near filter // Text does not appear when sUrl of oLanguage is used $("#table_filter").after("THIS TEXT SHOULD APPEAR NEAR THE FILTER"); </script> </body> </html>
Please help!
TIA,
Dror