text edit box not displaying controls

Permalink
I don't know what to do. I looked everywhere and none of the solutions helped me.

When I go to add a new block or edit a text box, I can add words but I can't save or do anything else.
I attached an example,

1 Attachment

 
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
Are there any javascript errors in the browser console?
It looks like a problem with java.
What is your website url?
kellito13 replied on at Permalink Reply
there are a few errors.
www.www.compositesystemsllc.com...
I'm not sure why I'm having these errors.
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
You appear to be calling the jquery library with this line of code
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>

Concrete has the jquery library already included in the core files.
Try commenting out that line of code (probably in your theme header) like this
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> -->

See if it helps..
ConcreteOwl replied on at Permalink Best Answer Reply
ConcreteOwl
The reason for the java error in the console is because the responsive header java-script references the .size() function and this has been removed from jquery from version 3 onwards.
The core jquery.js file is a modified version of jquery v1.11.3 and within the core file it allows for the .size call to be returned as .length.
Your header is referencing jquery v3.2.1, jquery v3.2.1 does not recognize the old .size() function, hence the error in the browser console.
kellito13 replied on at Permalink Reply
I commented it out but instead I'm unable to click on the column tabs to edit my content. I did however changed 3.2.1 to 1.11.3 and it worked .