Tuesday 1 December 2015

Text Values Speak Using Javascript in Asp.Net

Text Values Speak Using Javascriptext 

Textbox text value Speak Automatically on Page Loading in Asp.Net Using Javascript.

                         HTML Coding

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Text Values Speak Using Javascript in Asp.Net</title>
    <script type="text/javascript">

        // Text Values Speak Using Javascript

        var text = new SpeechSynthesisUtterance('Welcome to dotnetdrizzles.blogspot.in');
        window.speechSynthesis.speak(text);


    </script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
   
    </div>
    </form>
</body>

</html>





0 comments:

Post a Comment