[jQuery] Re: How do you make text selectable when using IE browser?

2009-09-21 Thread amtames
Thank you for offering insight into this issue. Unfortunately, after searching for this snippet of code 'document.onselectstart = function () {return false;}' I was not able to find anything. It does look like the .js file culprit is named: jquery.ui.all.js In it there is this: (I have tried

[jQuery] Re: How do you make text selectable when using IE browser?

2009-09-20 Thread RobG
On Sep 19, 6:53 am, amtames matt.a...@tnmed.org wrote: Hi, We recently had our site redeveloped by a professional firm. We originally requested that users not be able to copy and paste text from our site. This has created an outcry and we would like to have text be selectable. I see that

[jQuery] Re: How do you make text selectable when using IE browser?

2009-09-18 Thread donb
Most likely, they added a handler for the click event and thus can cancel the copy keyup events anywhere in the page. Lok through your javascripts for keypress, keyup, keydown keywords that would clue you to where this is being cancelled out. On Sep 18, 4:53 pm, amtames matt.a...@tnmed.org