javascript - Drag URL into IE 10 -


i have website, has textarea on can drag , drop urls. when dropped url, display url.

in general if drag , drop url ie browser open webpage of url.

in ie 8, website, if drop url textarea showing url in textbox, if drop outside textarea opening url page

but, in ie 10, eventhough drop textarea opening website of url, instead of showing in textarea!

any ideas?

basically want override url reading of ie browser when user dropping text on control!

example: below code working in ie 8 not in ie 10. (drag url)

<html> <head> <script type="text/javascript"> function showresults() { alert("hi"); } </script> </head> <body> <p>drag url onto textbox</p> <input id=txtdragorigin value=""     ondrop="showresults()" > </body> </html> 


Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -