Skip to main content

Posts

Showing posts with the label html

Contoh membuat audio di web hTML

<!DOCTYPE  html> <html> <body> <audio controls autoplay>   <source src="horse.ogg" type="audio/ogg">   <source src="horse.mp3" type="audio/mpeg"> Your browser does not support the audio element. </audio> <p><strong>Note:</strong> The audio tag is not supported in Internet Explorer 8 and earlier versions.</p> </body> </html>

Contoh Serialize Javascript form

<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script> <script> $(document).ready(function(){     $("button").click(function(){         $("div").text($("form").serialize());     }); }); </script> </head> <body> <form action="">   First name: <input type="text" name="FirstName" value="Mickey"><br>   Last name: <input type="text" name="LastName" value="Mouse"><br> </form> <button>Serialize form values</button> <div></div> </body> </html>