I have a custom JScript on entity form on MS Portal, simple as
$(document).ready(function () { // Enable or disable fields });
Then I have some additional logic on a Web page of a Portal,
$(document).ready(function () { // Do some additional stuff });
The problem is that when I have pieces of the logic in Web form , then the logic from Entity form is not working (I cannot just find the Jscript when debugging the page). Once I put all the logic on the web form -- it all works fine.
Can someone let me know if having the code
$(document).ready(function () {});
is legal on both Entity form and Web pages in MS Portal? Thank you in advance
*This post is locked for comments