After upgrading to 8.1.1.10/11, everyone wants to customize their application using PM PR files. But most of the time their PM PR code is not working in Internet Explorer, same happened with us….
Issue:
PM PR file is not working in IE 9 untill we opened inspect element (F12)
Cause:
There could be multiple reasons for the same as there are multiple Jquery bugs for IE. In our case, we have something strange.
While writing the code, developer print text in console of browser to trace something or while debugging.
Can you guys imagine that this console thing is the only trouble here.. 🙁
yes, root cause is below line what each & every developer write for his convenience.
[su_animate]Console.log(“text..”);[/su_animate]
Solution:
Well we need a work around for this as we always need to console our text in browser and test our code. So, what ??
Actually, Siebel already gives us a work around for this. Use below code in place of console, it will resolve IE error.
SiebelJS.Log(“text..”);
It resolve our problem, may be it helps someone.
@AskmeSiebel