When a user clicks on a link, I need to update a field in a database and then open the requested link in a new window. The update is no problem, but I don\'t know how to op
This might help you to open all page links:
$(".myClass").each( function(i,e){ window.open(e, '_blank'); } );
It will open every link items to another tab like you would had clicked each one.
You only need to paste it to browser console. jQuery framework required