Click here to Skip to main content
15,895,799 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: How to improve website ranking in Google Pin
markkuk28-May-07 10:29
markkuk28-May-07 10:29 
AnswerRe: How to improve website ranking in Google Pin
random423-Apr-09 19:12
random423-Apr-09 19:12 
QuestionwebBrowser navigating event problem Pin
Opa Knack27-May-07 2:52
Opa Knack27-May-07 2:52 
Questionjavascript ajax innerhtml xml dom problem... Pin
l a u r e n26-May-07 16:15
l a u r e n26-May-07 16:15 
AnswerRe: javascript ajax innerhtml xml dom problem... Pin
JimmyRopes27-May-07 2:37
professionalJimmyRopes27-May-07 2:37 
GeneralRe: javascript ajax innerhtml xml dom problem... Pin
l a u r e n27-May-07 11:35
l a u r e n27-May-07 11:35 
GeneralRe: javascript ajax innerhtml xml dom problem... Pin
JimmyRopes27-May-07 15:03
professionalJimmyRopes27-May-07 15:03 
Questionplease sol javascript problem Pin
Vinay Dornala26-May-07 2:52
Vinay Dornala26-May-07 2:52 
Hi all,

Iam new to javascript coding,

I have listbox1 and listbox2 if i double click on any item i need to add it into listbox2,

This is part is working fine with my code,

function MoveItemTo()
{
var ctrlSource=GetObject('CRS00027lstAvailableCourses');
var ctrlTarget=GetObject('CRS00027lstSelectedCourses');
var s_Index = ctrlSource.selectedIndex;
var s_Value = ctrlSource.selectedValue;
if(s_Index > -1)
{
var newOption=new Option();
newOption.value = ctrlSource.options[s_Index].value;
newOption.text = ctrlSource.options[s_Index].text;


ctrlTarget.options[ctrlTarget.length]=newOption;

}
}

If user click on same item that already exit in listbox2 then i need to display alert message i.e u have already selected particular item.

please send sample code,

Thanks N Advance;

AnswerRe: please sol javascript problem Pin
JimmyRopes26-May-07 3:48
professionalJimmyRopes26-May-07 3:48 
AnswerRe: please sol javascript problem Pin
Guffa27-May-07 18:59
Guffa27-May-07 18:59 
QuestionDETAILSVIEW WITH 2 COLUMNS Pin
hifiger200425-May-07 23:33
hifiger200425-May-07 23:33 
QuestionHow can I find out whether a page of iframe has been loaded completely or not? Pin
Ankur.Bakliwal25-May-07 3:38
Ankur.Bakliwal25-May-07 3:38 
AnswerRe: How can I find out whether a page of iframe has been loaded completely or not? Pin
Dmitry Khudorozhkov25-May-07 10:03
Dmitry Khudorozhkov25-May-07 10:03 
GeneralRe: How can I find out whether a page of iframe has been loaded completely or not? Pin
Ankur.Bakliwal25-May-07 18:42
Ankur.Bakliwal25-May-07 18:42 
QuestionJavascript OOP with the setInterval() Pin
chaddolan25-May-07 3:17
chaddolan25-May-07 3:17 
AnswerRe: Javascript OOP with the setInterval() Pin
Dmitry Khudorozhkov25-May-07 9:49
Dmitry Khudorozhkov25-May-07 9:49 
GeneralRe: Javascript OOP with the setInterval() Pin
chaddolan26-May-07 2:08
chaddolan26-May-07 2:08 
QuestionIIS requires object download everytime I browse to the page... Pin
Mundo Cani24-May-07 22:21
Mundo Cani24-May-07 22:21 
QuestionRestore data from datatable to database Pin
sm_78224-May-07 21:08
sm_78224-May-07 21:08 
AnswerRe: Restore data from datatable to database Pin
Mark J. Miller25-May-07 7:35
Mark J. Miller25-May-07 7:35 
Questionhelp in displaying image in Hyperlink control Pin
EEmaan24-May-07 19:45
EEmaan24-May-07 19:45 
AnswerRe: help in displaying image in Hyperlink control Pin
Mark J. Miller25-May-07 7:29
Mark J. Miller25-May-07 7:29 
QuestionIIS OUT OF PROCESS Pin
Rajkamal_dfine24-May-07 19:00
Rajkamal_dfine24-May-07 19:00 
Questionwhy this HTML code works with Hotmail while it dosnt work with Yahoo! ??!! Pin
suroor45324-May-07 14:11
suroor45324-May-07 14:11 
AnswerRe: why this HTML code works with Hotmail while it dosnt work with Yahoo! ??!! Pin
Christian Graus24-May-07 15:32
protectorChristian Graus24-May-07 15:32 

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.