Sujith Gangaraju wrote: > I am showing document in browser > i want to disable the copy option ctrl + c key in ruby > please help me out Might work to do it the traditional Ruby way: http://betterlogic.com/roger/?p=110 windows: trap :INT, proc { ¡Æha got your ctrl-c!¡Ç } and linux trap ¡ÉSIGUSR1¡í, proc {¡Çgot it in linux, too¡Ç} I think. Maybe add to environment.rb? -- Posted via http://www.ruby-forum.com/.