fork download
  1. jQuery(function($) {
  2. $('#dynamic-table').DataTable({
  3. "initComplete": function(settings, json) {
  4.  
  5. $(".link").click(function(){
  6. let href = $(this).attr('href');
  7. $('.iframe').attr('src', href)
  8. });
  9.  
  10. $('.link').attr({'data-toggle': 'modal', 'data-backdrop': 'static'}).each(function(){
  11. $(this).attr('href', $(this).attr('href')+'#modal-form');
  12. });
  13.  
  14. },
  15. .
  16. .
  17. .
  18. .
  19.  
Runtime error #stdin #stdout #stderr 0.32s 35416KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
js: "prog.js", line 15: invalid property id
js:             .
js: ............^
js: "prog.js", line 16: syntax error
js:             .
js: ............^
js: "prog.js", line 18: syntax error
js:             .
js: ............^
js: "prog.js", line 19: missing } after function body
js:             
js: ...........^
js: "prog.js", line 1: Compilation produced 4 syntax errors.