Django Image Processing Webapp Part II

In part I, we had only two options: Rotate and Transpose. In second part, we will add two drop down lists and other options so that the user can choose between many filters to process the image. Table of Contents List of Filters We have three types of filters. Within Basic we want user to choose between following options. For […]

Regular Expressions in JavaScript

Regular expressions, also known as regex, are simply ways to describe text patterns.  Regex can be very useful in many situations, for example when you need to look for  errors in a large file or retrieve the browser agent a user is using. They can also be  used for form validation, as with regex you can specify valid patterns for field entries such as email addresses or phone numbers.
This article covers use of Regex in JavaScript

DOM JavaScript

With the HTML DOM, JavaScript can access and change all the elements of an HTML document.
When a web page is loaded, the browser creates a Document Object Model of the page. Here we look at basic ways JavaScript access, changes and adds elements to an HTML document.

JavaScript break and continue

Table of Contents break continue break and labeled blocks break will stop the loop and move on to the code below the loop. continue will stop the current iteration and move back to the top of the loop, checking the condition (or in the case of a for loop, performing the statement and then checking the condition). break In the following code, we […]