<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="js/jquery-1.10.2.min.js" ></script>
<title>Untitled Document</title>
<script type="text/javascript">
$(document).ready(function(){
$('#show').click(function(){
var href = $(this).attr('href');
alert(href);
});
});
</script>
<style>
.show{
background:#693;
color:#000;
text-decoration:none;
}
</style>
</head>
<body>
<p class="credits">Figure credits goes here</p>
</figure>
<p> demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test</p>
<p> </p>
<figure class="image"><img alt="" height="228" src="http://localhost/rvrite/uploader/img/541akki.png" width="300" />
<figcaption>
<p><a class="figure-lable" id="f2" name="figure2">Figure 2 </a></p>
<p> </p>
<p>Caption</p>
</figcaption>
<p class="credits">Figure credits goes here</p>
</figure>
<p> demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo <a href="#table2(t2)" id="ytD2F">table2</a> demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test </p>
<table border="1" cellpadding="1" cellspacing="1" style="width: 500px;">
<caption><a class="figure-lable" id="t1" name="table1">Table 1 </a>caption goes here</caption>
<tbody>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
<p>demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test demo test </p>
<table border="1" cellpadding="1" cellspacing="1" style="width: 500px;">
<caption><a class="figure-lable" id="t2" name="table2">Table 2 </a>caption goes here</caption>
<tbody>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
<p> </p>
<input type="button" value="ok" id="show" />
</body>
</html>
What I want to do is to replace all my href string href="#table2(t2)"
with the
string present inside the braces :(t2)
if it is : href="#table3(t3) it should be replace with t3
how can I do it using jquery?