Posts

Showing posts from January, 2018

Select Control with Jquery

Today we are going to discuss about the usage of jquery on select option control .Select control is most often used due to its functionalities.On the other hand Jquery is the most popular and fastest client side library.So here we go, HTML <select class="form-control" id="test">     <option value='1'>Hello</option> <option value='2'> How are you</option>                  </select> Case 1 How can we get the selected value using jquery? $(document).ready(function () { var  t1= $('#test').val(); alert(t1); }); This will display the selected value of the select control with the Id 'test'. Case 2 How can we get the selected text  using jquery? $(document).ready(function () { var  t1= $('#test option:selected').text(); alert(t1); }); This will display the selected text like 'hello' or 'how are you'(as per our example) of the select control with the id ...

Words and their Tamil meanings

Diplomats:இராஜதந்திரிகள் Diplomat:தூதர் Disparity:ஏற்றத்தாழ்வு Instilled:சொட்டு சொட்டாக Instill:உண்டாக்கினாள் Onymous:ஆசிரியரின் பெயர் Priming:டேங்குக்கு Popping:உறுத்தும் Procurement:கொள்முதல் Definitions:வரையறைகள் Observe:கண்காணிக்க Unaware:தெரியாமல் Chest:மார்பு Lung:நுரையீரல் Splitting:பிளக்கும் Spilt:சிந்திவிட்டது Spill:கசிவு Splay:சாய்வுண்டாக்கு Arise:எழும் Diva:திவா Indeed:உண்மையில் Daydream:பகற்கனவு Poop:கப்பலின் பிற்பகுதி Been:இருந்து Renege:கைவிடத் Mist:மூடுபனி Shroud:காரணமில்லாத Shrouded:மூடப்பட்ட Calcium Arsenate:கால்சியம் ஆர்செனேட் Alalia:பேச்சுத் திறன் Affect:பாதிக்கும் Black Spot:கரும்புள்ளி Achieve:அடைய Inbreeding:உள்ளினச்சேர்க்கைக் Traits:பண்புகளை Shit:மலம் Kindergarten:மழலையர் பள்ளி Blasting Fuse:வெடித்திரி Cart:வண்டி Latus Rectum:செவ்வகலம் Speculation:ஊக Courtesy:மரியாதை Setoff:சரியான எதிரீடு Ripples:இயல்பு Patriarch:கோத்திரத்தலைவனாகிய Jubilee:விழா Departed:புறப்பட்டு Itinerary:பயண நிகழ்ச்சி நிரலை Intend:உத்தேசித்துள்ள Nonagenarian:9 இல் இருந்து 11 வதிற்கு உட்பட்...

Basic measurements

In this lesson we are going to learn about some basic measurements.We must know about these measurements . Because these are essential in our regular day to day life.If we don't know this we are may cheated. 1 centimetre=10millimetre 1metre=100 centimetre 1kilometre=1000 metre Km->m(1000)->cm(100)->mm(10) 1 feet=30.48 centimetre 1 inch=2.54 centimetre

Life

Life is something different and difficult.It varies man to man.It is neither easy nor difficult.It depends upon the way of living.If we take it as simple it will be simple.If we take it difficult it  will be difficult . Somebody lives it as it is and others carve it as per their wish. It is more important that live life as we like.Somebody gets life as they wish and the others not.It is not in our hand.But everybody can modify it as per their wish.It will take some more time to tweak. Life has ups and downs as like day and night.So disparities are usual in life.If we fall down we must get back with some  additional energy.Those who get back after their stumble are achievers. We must carve ourselves.we have to change our attitude towards our goal.Hardwork will pay the rewards.I remember one famous quote "Run as like horse till you win, Run more than horse after you win". Incidents are just incidents untill it happens to us.

SignalR

SignalR is the wonderful feature to display realtime data.To use SignalR  we should create the signal hub in c# and access it through the below javascript functions. We have two types of  methods available . 1.With Proxy 2.Without Proxy 1.With Proxy var contosoChatHubProxy = $.connection.contosoChatHub; contosoChatHubProxy.client.addContosoChatMessageToPage = function (name, message) {     console.log(name + ' ' + message); }; 2.Without Proxy var connection = $.hubConnection(); var contosoChatHubProxy = connection.createHubProxy('contosoChatHub'); contosoChatHubProxy.on('addContosoChatMessageToPage', function(name, message) {     console.log(name + ' ' + message); });

Mother

Mother is the epitome of the sacrifice.She has been sacrificing alot for us  till her death.She doesn't buy  anything for herself. We don't know these when we are child.She losses everything for our happiness.She indirectly shoulders the family burden while our father shoulders directly.She always thinks about us.We have to make her happy by doing even the tiny things like household things. She starts her work very early morning and finishes at late night.She does work such as cooking,Making house clean ,cares family members and so on.She doesn't expect any reward for that.We don't know her value until we miss her. She doesn't express the struggles which she has been facing .The only thing which she wants is the happy of her family.So do worship her ,do help her to complete house works, make her happy,make her proud.

Singular & Plural Basics

This is very basic article for understand the variation between singular and plural .Because often we are confusing to pick the suitable one.Here I explain you some rules about those. 1.Singular subjects(noun)+singular verb 2.Plural subjects(noun)+plural verb Some common singular subjects are anybody,each,each one,either,neither,everyone,nobody,no one,somebody,someone As i had told my last article ,Everything is related to time which is tenses.So i explain this concept for each tense.Because it varies for each tense. Mostly the pronouns I, he,she,it belong to singular category and we ,you,they belong to plural category. It describes the state of the subjects. 1.Present tense                      Singular-is                      Plural -are (e.g) He is my friend They are my family Candidates are men and women 2.Past tense           ...