Jump to content

harpalsinh999

Members
  • Posts

    35
  • Joined

  • Last visited

Everything posted by harpalsinh999

  1. or http://stackoverflow.com/questions/15385634/how-to-use-the-selected-audio-file-using-javascript-via-audio-tag-in-html-5
  2. <audio id="sample" src="sounds.mp3"></audio><a href="javascript:play1();">Play1</a><a href="javascript:play2();">Play2</a><a href="javascript:pauseAudio();">Pause</a><script>var audio = document.getElementById('click');function play1(){audio.currentTime = 0;audio.play();// This is the problem areaaudio.addEventListener('timeupdate', function (){if (currentTime >= 0.5) {audio.pause();}}, false);} function play2(){audio.currentTime = 0.5;audio.play();}function pause(){audio.pause();}</script> it possible in javascript http://stackoverflow.com/questions/5932412/html5-audio-how-to-play-only-a-selected-portion-of-an-audio-file-audio-sprite go this link
  3. http://www.w3schools.com/html/html5_audio.asp here your information
  4. body { color: #000000; font-family: Arial,Helvetica,sans-serif; font-size: 12px; margin: -21px; padding: 0; } this code replace with the mnc-style.css in the body
  5. download fire bug install in firefox and open browser and open your webpage then right click of your image and firebug in right side display css code change the code and adjust your image and replace with your origenal css code
  6. i added my files , and admin1.php it display table that table i want to in admin.php
  7. i want result in admin.php using ajax trough admin1.php ? <script type="text/javascript"> function mydata(hhh){ echo "hhh"; var urllink=hhh; $.ajax( { type: "POST", url: "admin.php", data: 'id='+ id; success: function(data) { alert("Hello! I am an alert box!!"); } }); } </script>
  8. mp3 upload and user can download give me script
×
×
  • Create New...