Re: Google Maps API Javascript Problem
This might give you some idea: var loadedXML = { location: true, targets: false }; function showHideMarkers(type, bShow) { if (bShow) { // show markers } else { // hide markers } } function handleClick(checkbox) { var type = checkbox.value;
Re: Javascript Read Content Directory
On 14 mei, 23:09, Thomas 'PointedEars' Lahn <PointedE...@web.de> wrote: But for example i have the following simple code, <img src="knopfler/knopfler.jpg" /> <img src="knopfler/knopfler1.jpg" /> <img src="knopfler1/knopfler2.jpg" /> <img src="knopfler1/knopfler3.jpg" /> <img src="knopfler2/knopfler4.jpg" />
Re: A Newbie's Must-Have Library
I don't want to get into a programming language war here, but I like JavaScript, in fact better than Java (which I think is what JSF & Facelets are). AD knows his stuff and JSF and Facelets may be a good way to do what he's doing but there's nothing intrinsically better about the Java _language_. The value of static typing and object-oriented straitjackets as silver
Re: A Newbie's Must-Have Library
Right, and that's how it should be. I don't know what mastery involves beyond understanding the (straightforward) syntax, knowing roughly what the DTD is and how to validate, and some idea of when to use what tag. You could go into what different broken browsers do with deprecated presentational attributes or how they repair invalid HTML but it's
how to read sound file(wav) in bytes usingjava script
hi all my problem is i have a wave file on client machine . now i want to read this file in bytes and then send this bytes to server through web services for performing other task. my problem is how i can read this file and store in byte without lossing any data