For any kind of form web parts, I like using update panel to avoid full page reload when the form is submitted. In such situation, a postback is invoked. When you execute a Javascript code on page load, it won't run after postback. In this post, I will provide you with a code snippet that fixes this issue.

I recommend using update panel mostly for UX reasons. When a visitor submits a form, just the form gets updated instead of the whole page. The visitor doesn't lose focus and receives an instant response. Update panel could be activated for a web part in its web part properties in the AJAX section.
A problem comes into play when you execute a Javascript code that manipulates the form. It won't run if you initialize the script using, for example, self-invoking functions or the document ready event in case of using jQuery.
// These won't work after postback
(function () {
// Your functionality here
})();
$(document).ready(function () {
// Your functionality here
})
Instead, you need to, let's say, re-register the script on postback. Below, see an example that demonstrates the usage.
- Create a function that does the desired functionality.
- Execute the function on page load.
- Re-run the function after postback.
// 1. Create a function that does the desired functionality
var yourFunction = function () {
// Your functionality here
};
// 2. Execute the function on page load
yourFunction();
//3. Re-run the function after postback
var prm = Sys.WebForms.PageRequestManager.getInstance();
if (prm != null) {
prm.add_endRequest(function (sender, e) {
if (sender._postBackSettings.panelsToUpdate != null) {
yourFunction();
}
});
};
Further reading
all posts- Kontent.ai
Request Kontent.ai Delivery API in Node.js
I've already done a few websites with Kontent.ai in Node.js and I would like to share my experience. In this article, I will show you how to request Kontent.ai Delivery API in Node…
- Kontent.ai
Multiple requests to Kontent.ai Delivery API in Node.js
In this article I will give you a code example that demonstrates how to make multiple endpoint requests and get one response object.
- Kentico Xperience
Safe attachment URLs resolution in srcset attribute in Page Builder in Kentico Xperience
In this post, I will provide you with a quick tip on how to fix the attachment URLs resolution in srcset attribute in Page Builder in Kentico Xperience.