I am using jQuery load(); to reload a div on event. The reloaded div contains shortcodes processing POST data.
The load(); method is not executing shortcodes when reloading, how can I process my shortcodes when reloading a div in WordPress?
function RGeneral(){
locGen=window.location.href + " #Edit_General";
(jQuery).ready(
(jQuery)('#Edit_General').load(locGen)
)}
Currently, the div "#Edit_General" reloads with empty shortcodes when the function "RGeneral( )" is called.
Many thanks in advance