jQuery mit ID`s

  • Hey Com,


    Da ich mehrere der Kästchen nutze habe ich voherig mit einer for Schleife dem Kästchen eine feste id zugewiesen


    <div class="mainbox_letter" id="<?php echo $array['id']; ?>">


    Mein Problem ist nun wie lasse ich mittels dieser ID im jQuery das ding einFaden also das auch wirklich nur diese ID den fadeIn bekommt nicht alle?
    Ich verzweifel hier?

  • $(".xxxFader").click( function() {


    Ich habe es jetzt so aber es wird nichts alrtet:


    $('.mainbox_letter').hover(function() {
    alert("data-toggle: "+ $(this).attr("data-toggle"));
    });

    <div class="mainbox_letter" data-toggle="<?php echo $array['id']; ?>"> //hier
    <table>
    <tr>
    <div style="float: left;">
    <td id="minibar"><div class="minibox"><?php echo $mailid; ?></div></td></div>
    <td id="image" onmouseover="Tip('Status: <?php switch($array['read']) { case 0:{ echo "Ungelesen"; break; } default: { echo "Gelesen"; break; } }?>')" onmouseout="UnTip()"><img src="images/icons/<?php if($array['read'] == 0) { ?>new_message.png<?php } else { ?>read_message.png<?php } ?>" style="height: 16px; width: 16px;" /></td></div>
    <td onmouseover="Tip('Absender')" onmouseout="UnTip()">
    <?php echo GetNamebyID($array['from']); ?>
    </td>
    <td onmouseover="Tip('Absendedatum')" onmouseout="UnTip()">
    <?php echo formatdate($array['time']); ?>
    </td>
    <td onmouseover="Tip('Betreff')" onmouseout="UnTip()">
    <?php echo $array['subject']; ?>
    </td>
    </div>
    <div id="message_<?php echo $array['id']; ?>"style="display: block; float: right; padding: 9px;">
    <img src="images/icons/bin_m.png" onmouseover="Tip('Nachricht l&ouml;schen')" onmouseout="UnTip()" />
    </div>
    </tr>
    </table>
    </div>