Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. function goToLink(url) {
  2. location.href = url ;
  3. }
  4.  
  5. function goToLinkTd(e,url) {
  6.  
  7. if (!e) var e = window.event; // Get the window event
  8. e.cancelBubble = true; // IE Stop propagation
  9. if (e.stopPropagation) e.stopPropagation();
  10.  
  11. location.href = url ;
  12. }
  13.  
  14. <tr onclick="goToLink('http://tahrircenter.com/product/bb/url')">
  15. <td>1</td>
  16. <td>10013</td>
  17. <td>عنوان</td>
  18. <td>
  19. -
  20. </td>
  21. <td>10</td>
  22.  
  23.  
  24. <td>
  25. <p class="">0</p>
  26. </td>
  27. <td onclick="goToLinkTd(event,'http://tahrircenter.com/product/bb/url#price-change')">
  28. <a href="#"><img src="http://tahrircenter.com/assets/frontend/_img/_svg/chart.svg" alt="" class="table-chart"></a>
  29. </td>
  30. </tr>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement