Click here to Skip to main content
15,886,199 members
Home / Discussions / JavaScript
   

JavaScript

 
AnswerRe: How can i use backbone.js Pin
Richard MacCutchan10-Feb-12 23:50
mveRichard MacCutchan10-Feb-12 23:50 
Questionpage loading Pin
Member 79044828-Feb-12 20:22
Member 79044828-Feb-12 20:22 
QuestionNeed Help Setting <img> src attribute Pin
PianoMan7-Feb-12 5:26
PianoMan7-Feb-12 5:26 
AnswerRe: Need Help Setting src attribute Pin
Dean Oliver7-Feb-12 6:40
Dean Oliver7-Feb-12 6:40 
GeneralRe: Need Help Setting src attribute Pin
PianoMan7-Feb-12 16:24
PianoMan7-Feb-12 16:24 
GeneralRe: Need Help Setting src attribute Pin
Dean Oliver7-Feb-12 21:56
Dean Oliver7-Feb-12 21:56 
AnswerRe: Need Help Setting src attribute Pin
Mohibur Rashid7-Feb-12 18:12
professionalMohibur Rashid7-Feb-12 18:12 
AnswerRe: Need Help Setting src attribute Pin
twseitex19-Feb-12 2:50
twseitex19-Feb-12 2:50 
(1) Please don't use names of collections for private vars

so var images = new Array();
better var arArrayOfImagesObjects=new Array();

images is al pre-dfined collection: document.images

see http://msdn.microsoft.com/en-us/library/ms537461.aspx

(2) To set scr:

valueof .src is not same like pure string

preload image

var imgObjekt1=new Image(); // height and width if you want
imgObjekt1.src='whatYouWant.jpg'; // maybe with path

vImg = document.createElement("IMG"); // check pionter !
if(vImg!=null)
{
// append into object (into child of body) // append into collection images automatically
// check pointer of appended object, use e.g. var imgAppendedImgObject

if(imgAppendedImgObject!=null)
{imgAppendedImgObject.src=imgObjekt1.src; // will be (now) rendered in body
// don't use setAttribute("src", "images/" + image);
}
}

(3) FIRST optimize your code during edit and THEN check errors at run time.

to createElement and appendChild

check always pointers != null

if you use a collection like images check too

declare vars inside of function --> local vars

declare vars inside of for{} --> declare 1 time outside of for and use inside

declare constants like "image1.jpg" outside of function --> use global code e.g. at begin of js-file (easy find and edit in js-file).
QuestionImages Won't display in IE 7 Pin
PianoMan5-Feb-12 6:27
PianoMan5-Feb-12 6:27 
AnswerRe: Images Won't display in IE 7 Pin
Richard MacCutchan5-Feb-12 23:23
mveRichard MacCutchan5-Feb-12 23:23 
GeneralRe: Images Won't display in IE 7 Pin
PianoMan6-Feb-12 4:15
PianoMan6-Feb-12 4:15 
GeneralRe: Images Won't display in IE 7 Pin
Richard MacCutchan6-Feb-12 4:30
mveRichard MacCutchan6-Feb-12 4:30 
GeneralRe: Images Won't display in IE 7 - SOLVED Pin
PianoMan6-Feb-12 4:43
PianoMan6-Feb-12 4:43 
GeneralRe: Images Won't display in IE 7 - SOLVED Pin
Richard MacCutchan6-Feb-12 5:31
mveRichard MacCutchan6-Feb-12 5:31 
AnswerRe: Images Won't display in IE 7 Pin
jsc4214-Feb-12 3:41
professionaljsc4214-Feb-12 3:41 
AnswerRe: Images Won't display in IE 7 Pin
twseitex19-Feb-12 2:59
twseitex19-Feb-12 2:59 
QuestionProblem with args.isValid in JS Pin
dayakar_dn1-Feb-12 22:14
dayakar_dn1-Feb-12 22:14 
AnswerRe: Problem with args.isValid in JS Pin
Mohibur Rashid1-Feb-12 22:36
professionalMohibur Rashid1-Feb-12 22:36 
GeneralRe: Problem with args.isValid in JS Pin
dayakar_dn1-Feb-12 23:03
dayakar_dn1-Feb-12 23:03 
GeneralRe: Problem with args.isValid in JS Pin
Mohibur Rashid1-Feb-12 23:10
professionalMohibur Rashid1-Feb-12 23:10 
Questionupdate several DIV using javascript with mysql data Pin
Sergio8430-Jan-12 10:09
Sergio8430-Jan-12 10:09 
AnswerRe: update several DIV using javascript with mysql data Pin
Mohibur Rashid7-Feb-12 19:38
professionalMohibur Rashid7-Feb-12 19:38 
QuestionJQuery.ajax not working Pin
Ali Al Omairi(Abu AlHassan)30-Jan-12 0:23
professionalAli Al Omairi(Abu AlHassan)30-Jan-12 0:23 
AnswerRe: JQuery.ajax not working Pin
Manfred Rudolf Bihy30-Jan-12 4:21
professionalManfred Rudolf Bihy30-Jan-12 4:21 
GeneralRe: JQuery.ajax not working Pin
Ali Al Omairi(Abu AlHassan)30-Jan-12 5:18
professionalAli Al Omairi(Abu AlHassan)30-Jan-12 5:18 

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.