Think Dynamic, Do Dynamic Microsoft Dynamic CE | Powerapps || Dynamic CRM || Power Apps || Power Platform

Monday, 1 August 2022

How to reload web page using jQuery in Powerapps portal

 How to reload web page using jQuery in Powerapps portal:


In this post, we show you how to reload web page using jQuery in ms crm portals.


If you want to reload the page on click of button, then you can call location.reload() on button click event. See below jQuery code.


$(document).ready(function() {
     $('#buttonId').click(function() {
             location.reload();
       });
});


If you want to reload page after certain time then use below code.


$(document).ready(function() {
  setTimeout("ReloadPage()", 10000);
});

No comments:

Post a Comment

Popular Posts

Featured post

Understanding Dataverse MCP vs Power Apps MCP – Quick Review

  Understanding Dataverse MCP vs Power Apps MCP – Quick Review Model Context Protocol (MCP) has quickly become one of the hottest topics in ...

Post Top Ad

Your Ad Spot

Pages