Click here to Skip to main content
15,885,546 members
Home / Discussions / JavaScript
   

JavaScript

 
QuestionHow to make slideshow using javascript Pin
Dotnetkanna26-Dec-11 3:51
Dotnetkanna26-Dec-11 3:51 
AnswerRe: How to make slideshow using javascript Pin
twseitex26-Dec-11 8:50
twseitex26-Dec-11 8:50 
AnswerRe: How to make slideshow using javascript Pin
Luc Pattyn26-Dec-11 10:07
sitebuilderLuc Pattyn26-Dec-11 10:07 
AnswerRe: How to make slideshow using javascript Pin
RaviRanjanKr26-Dec-11 11:49
professionalRaviRanjanKr26-Dec-11 11:49 
AnswerRe: How to make slideshow using javascript Pin
manognya kota4-Jan-12 18:26
manognya kota4-Jan-12 18:26 
QuestionFind X,Y position of a element Pin
yesu prakash25-Dec-11 0:45
yesu prakash25-Dec-11 0:45 
AnswerRe: Find X,Y position of a element Pin
twseitex25-Dec-11 1:11
twseitex25-Dec-11 1:11 
AnswerRe: Find X,Y position of a element PinPopular
Graham Breach25-Dec-11 6:44
Graham Breach25-Dec-11 6:44 
Try this:
JavaScript
var e = document.getElementById(id), x = e.offsetLeft, y = e.offsetTop;
while(e = e.offsetParent) {
  x += e.offsetLeft;
  y += e.offsetTop;
}

QuestionHow disable refresh when enter key pressed in the form input text? Pin
flashery14-Dec-11 20:54
flashery14-Dec-11 20:54 
AnswerRe: How disable refresh when enter key pressed in the form input text? Pin
Shahriar Iqbal Chowdhury/Galib14-Dec-11 21:08
professionalShahriar Iqbal Chowdhury/Galib14-Dec-11 21:08 
GeneralRe: How disable refresh when enter key pressed in the form input text? Pin
flashery14-Dec-11 21:52
flashery14-Dec-11 21:52 
GeneralRe: How disable refresh when enter key pressed in the form input text? Pin
twseitex18-Dec-11 7:02
twseitex18-Dec-11 7:02 
GeneralRe: How disable refresh when enter key pressed in the form input text? Pin
flashery18-Dec-11 7:17
flashery18-Dec-11 7:17 
GeneralRe: How disable refresh when enter key pressed in the form input text? Pin
twseitex23-Dec-11 5:15
twseitex23-Dec-11 5:15 
GeneralRe: How disable refresh when enter key pressed in the form input text? Pin
Hà Duy Thuận10-Jan-12 21:59
Hà Duy Thuận10-Jan-12 21:59 
Questionhow to populate content of aspx page(having Div and span tag) in to overlat Pin
dayakar_dn12-Dec-11 22:59
dayakar_dn12-Dec-11 22:59 
QuestionEnable pop up blocker using Javascript Pin
Member 322226411-Dec-11 5:47
Member 322226411-Dec-11 5:47 
AnswerRe: Enable pop up blocker using Javascript Pin
twseitex11-Dec-11 7:23
twseitex11-Dec-11 7:23 
AnswerRe: Enable pop up blocker using Javascript Pin
AprNgp26-Dec-11 17:26
AprNgp26-Dec-11 17:26 
QuestionTransforming a table to node diagram Pin
info_hacker8-Dec-11 21:12
info_hacker8-Dec-11 21:12 
QuestionUsing Javascript to list local directory contents Pin
Member 84548754-Dec-11 8:15
Member 84548754-Dec-11 8:15 
AnswerRe: Using Javascript to list local directory contents Pin
Wonde Tadesse5-Dec-11 4:36
professionalWonde Tadesse5-Dec-11 4:36 
QuestionJavascript code to fetch data from an excel file and upload data to an ftp site Pin
zone132-Dec-11 11:15
zone132-Dec-11 11:15 
AnswerRe: Javascript code to fetch data from an excel file and upload data to an ftp site Pin
twseitex3-Dec-11 5:59
twseitex3-Dec-11 5:59 
QuestionDrag & Drop jQuery to table rows and update database? Pin
btvbill30-Nov-11 10:28
btvbill30-Nov-11 10:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.