SuiteCRM advanced search is not working

The issues are while clicking search button in advanced search.
The error is : TypeError: document.search_form is undefined

while clicking basic search button in advanced search.
The error is : TypeError: document.getElementById(…) is null

by clicking clear button in advanced search.
The error is : TypeError: form is null

In List view there is no records.

This error TypeError:document.getelementbyid(…) is null would seem to indicate that there is no such element with an ID passed to getElementById() exist. This can happen if the JavaScript code is executed before the page is fully loaded, so its not able to find the element. The solution is that you need to put your JavaScript code after the closure of the HTML element or more generally before < /body > tag.