0

In my html page, after loading the page, i dynamically add a piece of code containing this anchor

<a id="btnCall" class="btn_call_infobox" href="javascript:booking.userCall(189, '42.87930679999999', '10.964063200000055', this.id);">Call</a>

whenever i click this anchor in firefox on my desktop, booking.userCall is called correctly, but clicking the same link on firefox on my android (fennec), this function is NOT called.

Is there some difference between these two firefox versions that can explain my issue?

1 Answer 1

0

I dont know about how much difference in browser version, but you should try below code

<a id="btnCall" class="btn_call_infobox" href="javascript:void(0)" onclick="javascript:booking.userCall(189, '42.87930679999999', '10.964063200000055', this.id);">Call</a>
0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.