hi guys , In my case I working on one music portal..
I have one problem guys. In my system , after some ratings by users on uploader (artist) page . I want to display one hide button which is already there.
Ex- users are rate the particular song of artist then after I admin have satified after 3 rate out of 5 then one {send for license} button to display on artist page which is already hide.
this button is in one division which is separate,
and I has been find ratings through ajax call to one jsp. and this counter display on artist_page jsp.]
I have one problem guys. In my system , after some ratings by users on uploader (artist) page . I want to display one hide button which is already there.
Ex- users are rate the particular song of artist then after I admin have satified after 3 rate out of 5 then one {send for license} button to display on artist page which is already hide.
Code:
#btn1
{
display:none;
}
Code:
<div>
<form action="send_l.jsp">
<input id="btn1" type="submit" value="send for license"/>
</form>
</div>
Comment