javascript - How to make table row clickable while using <display:table> &<display:column> -


<display:table class="table" name="regionlist" id="elem"         requesturi="./addcountry.html">         <display:column property="name" title="country" />         <display:column property="code" title="city" />         <display:column title="&nbsp;">             <a href="qqqq.html?id=<c:out value='${elem.id}' />">edit</a>         </display:column>     </display:table> 

how can make whole table row clickable link?

there 3 options here:

  1. wrap het div's within anchor (not best practice , don't think seo likes it)
  2. $(".parentdiv").click(function() { window.location = $(this).data("http:///www.location.com"); });
  3. <div onclick="location.href='your-url-here';" style="cursor: pointer;"></div>

Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -