how to make html open link in new tab
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
<a href="INSERT LINK" target="_blank">NAME</a>
</body>
</html>
// code by Tyler100OOO (Twitter @TylerCode1)
how to make html open link in new tab
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
<a href="INSERT LINK" target="_blank">NAME</a>
</body>
</html>
// code by Tyler100OOO (Twitter @TylerCode1)
js replace text link with anchor tags
var exp_match = /(\b(https?|):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig;
var element_content=content.replace(exp_match, "<a href='$1'>$1</a>");
var new_exp_match =/(^|[^\/])(www\.[\S]+(\b|$))/gim;
var new_content=element_content.replace(new_exp_match, '$1<a target="_blank" href="http://$2">$2</a>');
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us