I have a simple Pan card no : xxxxxxx7654
, which i am showing using jsp in the browser. Now , if i use the view source
functionality of the browser or the firebug tool or chrome bug tool, then i will be able to see the text in the DOM. Now, I want to get the text displayed in browser, but want to hide it from prying eyes of people who will be using fire bug
, chrome bug
or View Source of a browser
.
The field name is PAN_CARD_NO
.
I display it using : <p id ='My_Pan'>My Pan is :<%= PAN_CARD_NO %></p>
Now this brings the value in the browser, which is nice and dandy, but i don't want it to be shown using fire bug or chrome bug or view source.
Does any body have any suggestions as to how it can be done ?