Big problem with selecting first element
Welcome!
I have big problems and I think I need help. I'm a bit sick and maybe it's the reason of that situation.
I got data taken from database using php foreach loop.
-
echo "<div id='images-links'><div id=\"slideshow\">";
foreach ($img_links as $img_links) {
echo "<a href='$img_links->url' class='link'><img src='$target_path/$img_links->image' alt='$img_links->image'/></a>";
}
echo "</div></div>";
Now... I got applied slideshow plugin, but as you can see I;m not able to add class only to first element. I tried to do this with jQuery but it... didn't work.
Code is:
-
jQuery(document).ready(function(){
jQuery("#slideshow img:first").addClass("active");
});
Does anybody know why?