Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

213
Views
BroadcastChannel API JS not working. How to use?

I'm trying to use BroadcastChannel API in JS. I have the following code in my website. I want an input field in such a way that its value should be automatically updated if input is given in another tab of same webpage and vice-versa.

<input id="d" class="a0000000000a">
<script>
'use strict';
try {
    const a = new BroadcastChannel('a');
    a.onmessage = b => {
        var c = JSON.parse(b.data);
        document.getElementsByClassName('a' + c.a + 'a')[0].value = c.b
    };
    const d = document.getElementById('d');
    d.oninput = () => a.postMessage({
        a: d.className,
        b: d.value
    });
} catch (e) {
    alert(e)
}
</script>

It is not producing any error. And also not working as I expected.

EDIT
Issue resolved.

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!