Javascript widged
Date selection example I.
https://jqueryui.com/datepicker/
|
Graph example II.
https://plot.ly/javascript/pie-charts/
|
Equation example III.
<html><head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1250"> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"> </script> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ TeX: { equationNumbers: { autoNumber: "AMS"} } }); </script> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']] } }); </script> <script type="text/javascript"> MathJax.Hub.Config({ extensions: ["tex2jax.js"], "HTML-CSS": { scale: 95} }); </script> </head> <body bgcolor="#FFFFFF"> <h2>Equation:</h2> <p> \begin{equation} z\small{(t)}=y \small{(t)}^2 \cdot sin \small{(y(t)}) \end{equation} </p> </body></html> |
Javascript html editor example IV.
http://www.themaninblue.com/experiment/widgEditor/
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head><title>The Man in Blue > Experiments > widgEditor</title> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> <meta name="author" content="The Man in Blue" /> <meta name="robots" content="all" /> <meta name="MSSmartTagsPreventParsing" content="true" /> <meta name="description" content="" /> <meta name="keywords" content="" /> <style type="text/css" media="all"> @import "css/info.css"; @import "css/main.css"; @import "css/widgEditor.css"; </style> <script type="text/javascript" src="scripts/widgEditor.js"></script> </head> <body> <div id="content"><br> <h2>widgEditor</h2> <p></p> <form action="submit.php" onsubmit="alert('Your submitted HTML was:\n\n' + document.getElementById('noise').value); return false;"> <fieldset> <label for="noise"> Make some noise: </label> <textarea id="noise" name="noise" class="widgEditor nothing"> <p>widgEditor <strong>automatically</strong> integrates the content that was in the textarea!</p></textarea> </fieldset> <fieldset class="submit"> <input type="submit" value="Check the submitted code" /> </fieldset> </form> </div> </body></html> |
Visit a graphics object gallery. Click to any demo to see the source.
Try to find some interesting Javascript functions on the web. Try to construct your own program using them.