How to Add Numbers to HTML Java Script
JavaScript can enhance your Web page with dynamic content that is rendered differently based on user input or other factors, like the date the page is visited. The "write" method of the "document"...
View ArticleHow to Check for a Valid Number in JavaScript
Failure to verify user input on a Web form can cause problems on your website ranging from minor annoyances to system crashes. A text box on a Web page allows users to enter any and all keyboard...
View ArticleHow to Change Height With JavaScript on Resolution
JavaScript lets you change the height of HTML elements dynamically based on the screen resolution of the user's computer. This type of programming lets you dynamically size elements for easier user...
View ArticleHow to Identify an iPhone with jQuery
Identifying an iPhone or other smartphone device lets you redirect mobile device users to a specialized section of your website. Cell phones and mobile devices load images more slowly, so you can use...
View ArticleHow to Change a Slice With JavaScript
A JavaScript "slice" is a part of an array of variables. To change a "slice" of the array variable, you must specify the numerical index you want to change and assign the new value to the "sliced"...
View ArticleHow to Get the Current Mouse Position in Javascript
When your site visitors move their mouse cursors, you can track those movements using JavaScript. Once you know the X and Y coordinates of the user's cursor, you can program your application to...
View ArticleHow to Display Images With OnMouseOver
By including the "onmouseover" code inside of your JavaScript coding for your Web page, you can display images on your Web page that only become visible when a graphic or another image on is moused...
View ArticleHow to Convert KeyCode to ASCII With JavaScript
The ability to detect a site visitor's keystrokes can help you build more interactive Web applications. A game program, for instance, may need to know the characters a user presses in order to control...
View ArticleHow to Place a Box Under a DIV in CSS
When applying Cascading Style Sheet code to a Web page, HTML elements that are rendered visibly are regarded as occupying a "box" of space on the page. Before CSS, elements on the page did not...
View ArticleHow to Troubleshoot a Non-Responsive JavaScript
Writing JavaScript code for Web pages can be a frustrating experience for programmers because the runtime environment, the Web browser, is not normally used for debugging tasks like setting breakpoints...
View ArticleHow to Pass a List Through Javascript
High-level programming languages like JavaScript are designed to make the programmer's work easier and more efficient. If you need to perform the same operation on a list of numbers, string values or...
View ArticleHow to Write JavaScript That Uses Two Numbers
JavaScript, like other high-level programming languages, includes various structures to encapsulate code for frequent reuse. If you want to multiply two numbers together in JavaScript, the...
View ArticleHow Do I Get Rid of JavaScript Void?
The JavaScript "void" function provides Web developers with an "onclick" event trigger that returns nothing to the browser. The "void" function is typically used as a placeholder for hyperlinks located...
View ArticleHow to Replace HTML in Div Using jQuery
A free open-source JavaScript library, jQuery is used by a large number of websites to add user interactivity and enhance the visitor's experience. jQuery makes it simple to script complex AJAX...
View ArticleHow to Keep Sessions Alive With JavaScript
It's helpful to use JavaScript to keep a web session alive when a user may be completing a lengthy or important form. If you take a long time the session may time out, and all the information you...
View ArticleHow to Delete Multiple Checkbox Rows on JavaScript
JavaScript provides you with tools to dynamically create and delete controls such as a check box control. You can delete one or several check boxes using the "removeChild" function. The element deletes...
View ArticleHow to Remove Div with JQuery
JQuery is a JavaScript framework that allows for rapid development of JavaScript code. It is used mainly on websites for enhanced user interactivity and animations. JQuery can also be used to...
View ArticleHow to Expand a Section in JavaScript
Anchor tags, JavaScript and CSS can help you add professional-looking expanding sections to your Web pages. You may have seen this effect while clicking a button or link on a website. Clicking an...
View ArticleHow to Create a Search Bar With jQuery
Web development with JavaScript can produce amazing and impressive results, but overcoming certain challenges, such as how different browsers will render the same page and run the same script, may...
View ArticleHow to Move Objects Using Javascript
JavaScript provides you with the ability to dynamically lay out objects on a Web page. You can dynamically move an object using the "Left" and "Right" properties. These two properties tell the browser...
View Article