Jump to content
Fórum Script Brasil
  • 0

Selecionar categoria em tabela usando jQuery


defelper

Question

Olá pessoal,

estou desenvolvendo uma aplicação web e utilizando o jQuery para algumas funcionalidades. Ainda sou meio novato com essa biblioteca por isso estou com algumas dúvidas de lógica e utilização da mesma.

na minha página, vou ter várias tabelas como essa:

<table border=0 cellspacing=0 cellpadding=0 width=100%>  
<tr>  
    <td class=title>   
        <span class=titletext id=animais>Animais</span>  
    </td>  
</tr>  
<tr>  
    <td class=values>  
        <table border=1 cellspacing=0 cellpadding=0 width=100%>  
        <tr valign=top>  
            <td class=column width=33%>  
                <span id=mamiferos><a rel='nofollow' href=# class=link>Mamiferos</a><span class=count>(5)</span></span><br />  
                <span id=aves><a rel='nofollow' href=# class=link>Aves</a><span class=count>(8)</span></span><br />   
                <span id=anfibios><a rel='nofollow' href=# class=link>Anfibios</a><span class=count>(32)</span></span><br/>               
                <span id=repteis><a rel='nofollow' href=# class=link>Répteis</a><span class=count>(21)</span></span><br />      
             </td>  
        </tr>  
        </table>  
    </td>  
</tr>  
</table>
O que eu preciso é selecionar a categoria quando o usuário clica em algum animal, no exemplo: Animais. eu estou selecionando o objeto clicado com o jQuery:
$(document).ready(function(){  
                   $(.link).click(function(){  
                             var value = $(this).parent().attr(id);  
                    })  
                      
    });

mas preciso selecionar também a categoria do objeto clicado... alguém poderia me ajudar, como faço isso?

não sei se essa é a maneira mais facil de ver o objeto clicado, se alguém também tiver uma sugestão pra melhorar...

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...