• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Js stop working in Chrome - possible solution

Js stop working in Chrome - possible solution 12 years 8 months ago #14474

There is a proble in Google Chrome. When there is no pages navigation you can submit a comment, it is stored properly but the comments container is not refreshed with the new one. The error is "Cannot set property 'innerHTML' of null". I've fix with this modification:

Before:
document.getElementById('rsc_global_pagination').innerHTML = '';

Fix:
var pag_container = document.getElementById('rsc_global_pagination');
if(pag_container != null){
 pag_container.innerHTML = '';
}

There are others js errors in Google Chrome regarding xml.setRequestHeader but those don't make js stop working.

I also want to ask if you have taken a look to this request: www.rsjoomla.com/forum/51-rscomments/139...ped-out-problem.html
Thanks!!
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!