I am in the process of converting my multipaged php + jquery website into a single page angular app. However I have written a lot of code with jquery already so only intend
alternatively: if you want to stick with jquery ..you may be able to make use of jquery's event delegation : for example: HTML
jquery
Click Here
JS:
$('#parent').on('click', '.child', function() { console.log("click"); });
EDIT: added fiddle fwiw: https://jsfiddle.net/ge59sbtp/