Please tell me how to fix this error:

enter image description here

And WARNING whenever possible. It does not work.

<script> var cfg_load = null; $(document).ready(function(){ $('#ftp2d').submit(); cfg_load= $('#cfg_load').css({'box-shadow' : '0px 0px 0px #444', '-moz-box-shadow' : '0px 0px 0px #444', '-webkit-box-shadow' : '0px 0px 0px #444'}).dialog({minHeight: 285, autoOpen:false, minWidth: 485, title: 'Импорт конфигурации'}); $('#cfg_load_opt').css({'border' : '0px double black','box-shadow' : '0px 0px 0px #444', '-moz-box-shadow' : '0px 0px 0px #444', '-webkit-box-shadow' : '0px 0px 0px #444'}).tabs(); }); </script> 

  • you have an error in javascript code and not in php ... - Broouzer King
  • 2
    I was lost for a couple of minutes. What is the connection between the browser console with errors in Javascript and PHP code? - therainycat
  • Sorry, wrong. And how did you find out what's in the script, and in which? - Maxim
  • @therainycat, fixed the post. - Maxim
  • 2
    The first thing that comes to mind is the dialog from JqueryUI, which is not connected - therainycat

0