Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~825 People Reached
About Me

i am a very cool person............

Favorite Forums
Favorite Tags
Member Avatar for ramkrishna.dhakad

onkeypress event in javascript not showing the unicode(hindi/remingtongail) character it is only alerting 'r' on pressing a key. i am using hindi indic input 3 toolbar to type in laptop. my javascript code is function validate(){ var string=event.key; c = string.charCodeAt(1); var xyx=String.fromCharCode(c); alert(xyx); } My html text area code …

Member Avatar for Dani
0
630
Member Avatar for ramkrishna.dhakad

I am working on a project which is having jquery driven menus.but it is not working- the code is $(function(){ $('a#home').click(function(b){ b.preventDefault(); $.cookie('class','home'); }); $('a#write').click(function(c){ c.preventDefault(); $.cookie('class','write'); }); $('a#comments').click(function(d){ d.preventDefault(); $.cookie('class','comments'); }); $('a#medias').click(function(e){ e.preventDefault(); $.cookie('class','medias'); }); $('a#users').click(function(f){ f.preventDefault(); $.cookie('class','users'); }); $('a#stats').click(function(g){ g.preventDefault(); $.cookie('class','stats'); }); $('a#settings').click(function(h){ h.preventDefault(); $.cookie('class','settings'); }); $('a#backup').click(function(i){ i.preventDefault(); …

Member Avatar for diafol
0
195