Here is an example of the Jplayer code...
<script type="text/javascript">
$(document).ready(function(){        // Player instance
        $("#jplayer_1").jPlayer({
        ready: function () {
                $(this).jPlayer("setMedia", {
                        mp3: "http://somesite.com/mp3/Somefile.mp3"
                });
        },
    play: function() { // To avoid multiple jPlayers playing together.
        $(this).jPlayer("pauseOthers");
    },
        cssSelectorAncestor: "#jp_container_1",
        swfPath: "/common/licensed/jplayer",
        supplied: "mp3",
        useStateClassSkin: true
      });        // Player instance
        });
</script>Any MP3 file hosted on non-SSL sites will not play.
Is that just the way it is? I didn't think these files were considered "part of the SSL page" but instead "links" (like anchor tags), and links from an SSL page can be to non-SSL pages.
Thanks for your help.
On Jul 4, 2020, at 9:50 AM, 'Steve Wehr' via jPlayer: HTML5 Audio & Video for jQuery <jpl...@googlegroups.com> wrote:
--
You received this message because you are subscribed to the Google Groups "jPlayer: HTML5 Audio & Video for jQuery" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jplayer+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jplayer/4d9b9b37-7426-416d-85cf-2a345f14d424o%40googlegroups.com.