MessageListener not working in JS

After subscribing to the particular tag/channelName, when i publish the message, message listener is not working. Can you please help me to make this work? I only have message listener issue in javaScript not in android.

        channel = Backendless.Messaging.subscribe( channelName );
        channel.addMessageListener( onMessage ) 

MyUrl:
https://vanrancommunication.000webhostapp.com/vanranqrcode.html

I followed this demo

Hi @Naeem_Aziz

Welcome to our community and thank you for trying out Backendless.
I’ve created an internal ticket BKNDLSS-30876 to investigate this question.

Regards,
Viktor

hello @Naeem_Aziz

try to add an error handler to check if there are any errors from the server

   channel = Backendless.Messaging.subscribe( channelName );
   channel.addMessageListener( onMessage, onError ) 

function onError(error){
  console.log('error:', error) 
}

Regards, Vlad

Hello @Naeem_Aziz ,

We’ve just updated cloud servers with a fix for the issue you described above. Could you kindly let us know whether fix works for you well?

Regards
Inna