Is it possible to add a tag to a music player on the page so that the song playing on the page can be changed by the user.
MP3 Edit Tag
(3 posts) (2 voices)-
Posted 8 months ago #
-
you can with jquery.
<div class="cms-editable" id="mes"><p>song tilte goes here</p></div> # code for player goes here, use an id of songtitle for title. <script type="text/javascript"> $(document).ready(function(){ var txt = $('#mes p').text(); $("#songtitle").attr("title",txt); }); </script>Posted 8 months ago # -
show your code and we will see if we can come up with the best solution for you :)
Posted 8 months ago #
Reply
You must log in to post.