Articles on JavaScript Category


Search text box clear button image
Search text box clear button
Author image

this is an example how to clear input value when click a clear button in search box . create a search form to demonstrate this task div #serchhide{ display:none; cursor:pointer } then create a search form <form action="" method="post"> <div class="input-container-search"> <input type="search" name=...

Read More
add prism code snippet in to a website image
Add prism code snippet in to a website
Author image

This is an example of code snippet how it display the content of you code (function () { if (typeof Prism === 'undefined' || typeof document === 'undefined') { return; } /** * Plugin name which is used as a class name for <pre> which is activating the plugin * * @type {string} */ var PLUGIN_NAME = 'line-numbers'; ...

Read More
using Line Numbers in code snippet   image
Using Line Numbers in code snippet
Author image

<pre> <code class="language-javascript"> (function () { if (typeof Prism === 'undefined' || typeof document === 'undefined') { return; } function mapClassName(name) { var customClass = Prism.plugins.customClass; if (customClass) { return customClass.apply(name, 'none'); } else { return name; } } var PARTNER ...

Read More
Email Verification using JavaScript image
Email Verification using JavaScript
Author image

<p>Protect fake email&nbsp;</p> <pre> <code class="language-javascript">function validate_email() { var request; try { request= new XMLHttpRequest(); } catch (tryMicrosoft) { try { request= new ActiveXObject("Msxml2.XMLHTTP"); } catch (otherMicrosoft) { try { request= new ActiveXObject("Microsoft.XMLHTTP"); } ca...

Read More
CHECK FORM VALIDATION without loading a page using AJAX image
CHECK FORM VALIDATION without loading a page using AJAX
Author image

<p>Article description is here</p>

Read More
9th topics image
9th topics
Author image

estimate paragraph readig time

Read More

Search


Archives

Find Us on Facebook

Subscribe for new updates



Back to Top