Javascript error in firefox "container not defined"

I get a strange JavaScript error in firefox 8.0 when I click on the Firebug icon to show the console. he says: "The container is not defined." There are 2 more errors that appear on pageload, they are jQuery undefined ....................... jquery-ui-1.8.16.custom.min.js jQuery ("# ​​radioGraphsWorkflow"). buttonet is not a function .... dashboard.js The container is not defined .................................. http: //www.google.com/uds/. api / visualization / 1.0 / 92cbb0f92b037d8f5681d4066f62a719 / format + en, default, corechart.I.js

Errors result from changing the style template to use the constellation template - a new template that I assume uses Google charts internally for rendering - (source of the third error)

the template we use: http://themeforest.net/item/constellation-complete-admin-skin/116461

+6
source share
1 answer

This error usually occurs (when using the Google chart API) by elements that have an identifier. Make sure there are no duplicate identifiers.

You can use w3 validator to verify this.

Another alternative is that the container does not really exist. Make sure the container you apply the div to actually exists

+10
source

Source: https://habr.com/ru/post/902809/


All Articles