On my page, I have a list with items and you can click on a \"View More\" button which shows you more information about this topic. This click function is in jQuery on an other
try
$(document).on("click",".click-job-viewmore",function(e) {});
Because you should use delegates for dynamically created objects. It will help you to attach events for future elements to be created.
Attach the click event to the document $(document).on('click','element' function(){});