• Hubs
  • tagged javascript

1-10 of 100 hubssort by Hot | Best | Latest

76

Creating JavaScript Objects by Literal Notation

IntroductionThe aim of this article is to quickly make you understand the meaning of Program Objects (OOP) and how to create them in JavaScript. I assume in this article that you know the meaning of variables...

0 comments    create javascript object
95

A List of Essential Web Design Skills

I've described the key list of web design skills you'll need in order to work as an effective freelance web designer. Or your're writing your website yourself, I give you the best places and ideas from which to start your journey.

110 comments    technology internet web
Alpho011 profile image93

Web Page Text Resizing Example Using Javascript , HTML and CSS

Today we are going to use Javascript to resize text on a web page, while the example is not a catch all example, it does illustrate what can be done using client scripting, the goal of this is not copy and...

3 comments    technology internet how to
73

javascript typeof operator

JavaScript typeof operator tells you what type of data you're dealing with: var BooleanValue = true; var NumericalValue = 354; var StringValue = "This is a String"; alert(typeof BooleanValue) //...

3 comments    programming javascript typeof
84

Using JavaScript String Regular Expressions

IntroductionThis is the seventh part of my series, JavaScript String Regular Expressions. We have seen some uses of regex in JavaScript. We know how to verify if a regex is found in a subject string. We know...

0 comments    javascript use string
85

Flags in JavaScript String Regular Expressions

IntroductionThis is part 5 of my series JavaScript String Regular Expressions. Matching is case sensitive. You may not know if what you are looking for is in lower case or upper case or has mixed cases. It is...

0 comments    flag javascript string
78

Introduction to JavaScript String Regular Expressions

IntroductionThis is part 1 of my series, JavaScript String Regular Expressions. Consider the string,                            “This is a man”.Assume that you do not know the...

0 comments    javascript introduction string
69

The Easiest Web Design Software in the World

Looking for the easiest web design software? If you're building a website, there's the hard way and then there's the easy way. HTML is quite easy to learn but some people just don't have the time or the will...

2 comments    software design web design
68

How To Add Social Bookmarking To Blogger

Be sure to back-up your Template first! Go to Blogger Layout > Edit Html Check Expand Widget Templates Replace with Then find Paste the code below after this line and Save.

0 comments    advice internet how
Alpho011 profile image89

Simple Event calendar (PHP, MySQL)

We will create a useful event calendar using PHP and MySQL and a sprinkle of javascript/ CSS for functionality and look. Here is the live example: http://diadde.com/test/cal.php True to past examples given...

28 comments    google history php
working