Skip to main content

The essence of trust is not in its bind, but in its bond


Little girl and her father were crossing a bridge.
The father was kind of scared so he asked his little daughter,

'Sweetheart, please hold my hand so that you don't fall into the river.'

The little girl said, 'No, Dad. You hold my hand.'
'What's the difference?' Asked the puzzled father.


'There's a big difference,' replied the little girl.


'If I hold your hand and something happens to me,

chances are that I may let your hand go.

But if you hold my hand, I know for sure that no matter what happens,

you will never let my hand go.'



In any relationship, the essence of trust is not in its bind, but in its bond.


So hold the hand of the person who loves you rather than expecting them to hold yours...
This message is too short......but carries a lot of Feelings.

Comments

Popular posts from this blog

How to deselect all the selection in a select ( combo ) box?

In a HTML page sometimes we may have to deslect all the selection in a select control of html. but as a user we can't do anything. But using Javascript programatically we can achieve this. Here is the sample code in Javascript. function clearSelect( selectObj ){ for (var i = 0; i < selectObj .options.length; i++) { selectObj .options[i].selected = false; } } note: we need to pass the select object as a parameter to this function. the alternative to this code is function clearSelect( selectObj ){ selectObj.selectedIndex = -1; }