php - How to Perform jQuery UI Function on Div -
i find out if there way perform jquery ui function (e.g. fadeout() ) on particular div if div has same name.
the thing that, program output data cast/mold div, therefore in html, appears many div of same name.
you can give particular id div:
<div id="test">.........</div>
and apply jquery div id as:
$("#test").fadeout("slow");
Comments
Post a Comment