I have a problem with mozilla firefox.
I am developing a web site using asp.net language and I have a button in a form. when i clicked the button at onclick attributies i am calling a function and this funtion doing postback.
this scenerio is working chrome and internet exploerer. but it is not working at mozilla firefox. i am getting this error in console : TypeError: access to strict mode caller function is censored..
my sample button is :
<input id="Button1" type="button" onclick="sampleFunc('sample');" value="button" />
and my sample function is :
function sampleFunc(reqMessage)
{
__doPostBack('', reqMessage);
}
I searched on internet. and many people have rhis problem but there is no any solution.
Do you have any solution about this bug (!)
EDIT 1: I have found a ticket on jquery web site. According to the ticked, thay fixed that bug. But i applied same solition but my bug is continue. :(
sampleFunc
function called first of all? – Owain"use strict"
. Are there any occurrences? – Sealskin