How to reload web page using jQuery in Powerapps portal

Talha Manzoor
0

 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);
});

Post a Comment

0Comments

Post a Comment (0)