Wednesday, July 25, 2012

tantrum - an occasion when someone suddenly behaves in a very angry and unreasonable way, often screaming, crying, or refusing to obey someone. This word is usually used about children have/throw a tantrum.
Example:Sudden instances of a particular emotion

wail - to shout or cry with a long high sound to show that you are in pain or are very sad
Example : The baby wailed all night.

doze off--to start to sleep, especially during the day and without intending to.
Example : I dozed off in front of the television.


Tuesday, July 17, 2012

mend----to do something to end an argument or disagreement

Example
The Secretary of State and Chinese Foreign Minister met in an attempt to mend strained relations.


Monday, July 16, 2012

Illusion

Illusion --- a false or wrong belief or idea, Something that is not real or true

Examples:

This description creates the illusion that we can solve all our environmental problems.


Sunday, July 15, 2012

plunge ----to fall quickly from a high position

Example: His car had plunged off the mountain road in heavy rain.


Tuesday, July 10, 2012

Adjust width of input textbox


HTML




JavaScript


if(date.value.length <='20'){ / date.style.width = (date.value.length * 7.2) + "px"; return false; } if(date.value.length >='20'){ date.style.width = (date.value.length * 7.0) + "px"; return false; } return true;

Monday, July 9, 2012

Jquery date picker validation - bootstrap

$(function() { $(document.getElementById('<%=txtDate.ClientID%>')).datepicker({ dateFormat: 'dd/mm/yy', onSelect: function() {} }); });

Javascript find highest and lowest from the given inputs

function highAndLow(numbers){ // numbers = "4 5 29 54 4 0 -214 542 -64 1 -3 6 -6"   let numbersInArr = numbers.split(' '...