0

Please help me how to use bread crumbs in these hyperlinks so that they sohow tracker

String cat_code= fetch.getCat_code(); %>
<% if(P_list!=null && P_list.size()>0) { for(int i=0;i
    <P_list.size();i++) { b=( Bean)P_list.get(i); %>
        <tr>
            <td><a href="javascript:getSubCategory('<%=b.getCat_code() %>') "><%=b.getCat_parent(%></a>
            </td>
            <td><a href="javascript:getSubCategory('<%=b.getCat_code() %>')"><%=b.getCat_name() %></a>
            </td>
            <td><a href="javascript:getSubCategory('<%=b.getCat_code() %>')"><%=b.getCat_code() %></a>
            </td>

We get hyperlinks of all parent & their childs.

Magnus Engdal
  • 5,446
  • 3
  • 31
  • 50

1 Answers1

0

As you have atagged you question with jquery, I suggest that you use a jquery breadcrumb plugin such as http://www.comparenetworks.com/developers/jqueryplugins/jbreadcrumb.html

Scary Wombat
  • 44,617
  • 6
  • 35
  • 64