How to get textbox cursor position?

Please support our JavaScript / DHTML / AJAX advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
Reply

Join Date: Nov 2007
Posts: 26
Reputation: nokomoli is an unknown quantity at this point 
Solved Threads: 0
nokomoli nokomoli is offline Offline
Light Poster

How to get textbox cursor position?

 
1
  #1
Oct 9th, 2009
Hi guys,

I am facing a weird problems which is i am fail to get cursor position at DIV at IE8 but work at IE7 or IE6. Can anyone tell me how to solve this problem.
Reply With Quote Quick reply to this message  
Join Date: Sep 2009
Posts: 539
Reputation: network18 is an unknown quantity at this point 
Solved Threads: 64
network18 network18 is offline Offline
Posting Pro
 
0
  #2
Oct 9th, 2009
post your code here
Reply With Quote Quick reply to this message  
Join Date: Nov 2007
Posts: 26
Reputation: nokomoli is an unknown quantity at this point 
Solved Threads: 0
nokomoli nokomoli is offline Offline
Light Poster
 
0
  #3
Oct 11th, 2009
JavaScript / DHTML / AJAX Syntax (Toggle Plain Text)
  1. function getSelectionStart(o) {
  2. if (o.createTextRange) {
  3. var r = document.selection.createRange().duplicate();
  4. r.moveEnd('character', o.value.length);
  5. if (r.text == '')
  6. return o.value.length;
  7. return o.value.lastIndexOf(r.text);
  8. }
  9. else
  10. return o.selectionStart;
  11. }
  12. function ChooseTag(obj1)
  13. {
  14. s = getSelectionStart(obj1);
  15. obj1.innerHTML = obj1.innerHTML + obj.value;
  16. }
Reply With Quote Quick reply to this message  
Join Date: Oct 2009
Posts: 6
Reputation: yonker is an unknown quantity at this point 
Solved Threads: 1
yonker yonker is offline Offline
Newbie Poster
 
0
  #4
Oct 12th, 2009
o good
Reply With Quote Quick reply to this message  
Join Date: Nov 2007
Posts: 26
Reputation: nokomoli is an unknown quantity at this point 
Solved Threads: 0
nokomoli nokomoli is offline Offline
Light Poster
 
0
  #5
Oct 12th, 2009
Originally Posted by yonker View Post
o good
what means??
Reply With Quote Quick reply to this message  
Reply

Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC