@Howard and @Justin, thanks for response.
Error I am getting in console is 'audioplayer.js:3 Uncaught TypeError: $(...).jPlayer is not a function'

Issue's detail is as follow.
I has wrapper of 'mod_page' module in mod. And a custom theme derived from 'base' theme. In config of my custom theme, a lot of '.js' are being added by following like this
GLOBAL $PAGE;
$PAGE->requires->js('/theme/collegev6/
javascript/modernizr.custom.js',true);
$PAGE->requires->js('/theme/collegev6/
javascript/custom_nav.js',true);
$PAGE->requires->js('/theme/collegev6/javascript/classie.js',true);
$PAGE->requires->js('/theme/collegev6/javascript/borderMenu.js',false);
$PAGE->requires->js('/theme/collegev6/javascript/kcheck_svgcheckbx.js',false);
$PAGE->requires->js('/theme/collegev6/javascript/testmil_svgcheckbx.js',false);
$PAGE->requires->js('/theme/collegev6/javascript/quizmil_svgcheckbx.js',false);
$PAGE->requires->js('/theme/collegev6/javascript/jquery.jplayer.min.js',true);
$PAGE->requires->js('/theme/collegev6/javascript/jplayer.playlist.js',false);
$PAGE->requires->js('/theme/collegev6/javascript/audioplayer.js',true);
$PAGE->requires->js('/theme/collegev6/javascript/validetta.js',true);
$PAGE->requires->js('/theme/collegev6/javascript/SetViewTimer.js',false);
$PAGE->requires->js('/theme/collegev6/javascript/Navigation.js',false);
In content of page, I am playing an audio by using 'jplayer' as follow
$(document).ready(function () {
jpPlayAudio("/theme/collegev6/audio/01/0102A-MJ101v6.mp3");
var audioPath = "/theme/collegev6/audio/01/";
var audioFiles = audioPath + "0102A-MJ101v6-1.mp3," + audioPath + "0102A-MJ101v6-2.mp3," + audioPath + "0102A-MJ101v6-3.mp3," + audioPath + "0102A-MJ101v6-4.mp3,"
+ audioPath + "0102A-MJ101v6-5.mp3," + audioPath + "0102A-MJ101v6-6.mp3," + audioPath + "0102A-MJ101v6-7.mp3," + audioPath + "0102A-MJ101v6-8.mp3";
preloadSound(audioFiles);
});
$(".question-wrapper").mouseenter(function () {
jpPlayAudio("/theme/collegev6/audio/01/" + $(this).data("audio"));
});
And methods in 'theme/collegev6/javascript/audioplayer.js' look like
//Function to play audio files using JPlayer
function jpPlayAudio(audioFile) {
if (audioFile.trim().length < 1)
{
$("#audioWrapper").empty();
} else
{
if ($('#jquery_jplayer_1').length > 0) {
$('#jquery_jplayer_1').jPlayer("setMedia", {m4a: audioFile}).jPlayer("play");
} else {
$("#audioWrapper").append("");
$("#audioWrapper").append("");
$('#jquery_jplayer_1').jPlayer({
ready: function (event) {
$(this).jPlayer('setMedia', {m4a: audioFile}).jPlayer('play');
}, swfPath: 'jplayer/',
supplied: 'm4a',
useStateClassSkin: true
});
$('#jquery_jplayer_1').bind($.jPlayer.event.play, function (event) {
$('.jp-controls .jp-play').removeClass('jp-pause-icon');
$('.jp-controls .jp-play').addClass('jp-play-icon');
});
$('#jquery_jplayer_1').bind($.jPlayer.event.pause, function (event) {
$('.jp-controls .jp-play').removeClass('jp-play-icon');
$('.jp-controls .jp-play').addClass('jp-pause-icon');
});
}
}
}