Am setting am iframe in a modal of specific links when clicked.It works fine on the computer but when i use mobile phone browser the modal pops up but doesn't show the iframe This what i have done please tell me where the error is
sample link code
<a href="http://www.youtube.com/v/qyoXH32WXvg&autoplay=1" class="link" >
Then the jquery code is here
<script>
$('.link').on('click',function (event) {
var src = $(this).attr("href");
$('#myModal').modal('show');
$('#myModal iframe').attr('src', src);
event.preventDefault();
});
$('#myModal button').click(function () {
$('#myModal iframe').removeAttr('src');
});
Where am i going wrong