THis is my html code
I have PHP script where it generate new text every time user submits it.
Is it possible to make with javascript to add here "sticky1" new number every time user submits text
something like
Code:
<div class="icon_info"><a href="#" data-tooltip="sticky1"> <img src="images/info_icon.png" alt="info"></a></div> <!--HTML for the tooltips--> <div id="mystickytooltip" class="stickytooltip"> <div style="padding:5px"> <div id="sticky1" class="atip" style="width:200px"> Every time new test </div> </div> <!--HTML for the tooltips-->
Is it possible to make with javascript to add here "sticky1" new number every time user submits text
something like
Code:
<a href="#" data-tooltip="[B]sticky2[/B]"> <img src="images/info_icon.png" alt="info"></a>
Code:
<a href="#" data-tooltip="[B]sticky3[/B]"> <img src="images/info_icon.png" alt="info"></a>
Code:
<a href="#" data-tooltip="[B]sticky4[/B]"> <img src="images/info_icon.png" alt="info"></a>
Comment