0
votes
3answers
37 views
object, param, jquery
<object width="438" height="280" id="pano" >
<param value="url_flash" name="movie" />
<param value="false" name="menu"/>
<param value="high" name=" …
1
vote
6answers
38 views
Accessing an object’s property from an event listener call in Javascript
Below I am creating an object in Javascript. Within the constructor I am setting up an event listener. The problem is that when the event gets fired, this.prop cannot be found, and …
0
votes
1answer
26 views
how can I adjust volume in my program?
I'm creating an audio player program in HTML and Javascript. How can I adjust the volume in my program?
1
vote
2answers
24 views
How to read/display XML using PHP
Is there a way to read off from an [external] xml (an xml file from a different website) using PHP? I know there's a way to read XML using JavaScript, but only if they are both in …
0
votes
0answers
5 views
Javascript “unspecified error” in Open Layers
I am getting this error when the map loads.
The error is in the original, unmodified OpenLayers.js file on this line:
return!!(document.namespaces);
I have tried rewriting it t …
0
votes
0answers
18 views
firefox iframe history
In a web app we use IFRAME to let users select items for the parent page.
The problem is that FIREFOX (3.5) adds a copy of the same (parent) page to history each time IFRAME is op …
0
votes
5answers
42 views
Escaping double quotes in JavaScript onClick event handler
The simple code block below can be served up in a static HTML page but results in a JavaScript error. How should you escape the embedded double quote in the onClick handler (i.e. …
0
votes
3answers
30 views
What is the section of Javascript ? - wwOpenInstalled
Ok so I start coding websites (yes I know I am almost 15 years late :0) and in many of the sites I see the following javascript:
<script language="javascript"><!--
var w …
1
vote
2answers
91 views
Where to place heavy jQuery code in web development MVC pattern?
I'm building a website where many of the pages are very interactive without having any communication with the web server. Basically, a page represents a kind of DHTML interface, wh …
0
votes
2answers
35 views
finding the previous item in a JQuery array
I have the jquery:
$(".item")
which gives me all elements of class item.
I need to select an item from the array I get from this method, and then find the item before this.
so …
0
votes
2answers
30 views
Calling javascript from sifr replaced anchor tags?
I'm using sIFR to replace my navigation text with a new font:
<ul>
<li><a href="#">about</a></li>
<li><a href="#">reel</a>& …
0
votes
4answers
50 views
How do I view the HTML Dom afer a jQuery modification?
I am using DebugBar in IE to view the DOM. But after I modify the DOM with jQuery I can not see the new or modified DOM with DebugBar. How Do I view the modified DOM?
3
votes
3answers
78 views
Javscript book which teaches javascript the language, not dom.
I am a pretty good programmer(IMO only, of course. Know Python, Java well. Tried my hands at Lisp, Ruby, Haskell). I also know how to use Jquery reasonable well, so I know Dom mani …
1
vote
3answers
50 views
jQuery nextAll — Click on h-element toggles all p-elements until next h
Hi, i'm creating an FAQ page where the answer is toggled by clicking on the question. The question is h3 and the answer is several "p" elements. Like this:
<h3>The First Que …
1
vote
3answers
51 views
Prevent default behavior in text input while pressing arrow up
I’m working with basic HTML <input type="text"/> text field with a numeric value.
I’m adding JavaScript event keyup to see when user presses arrow up key (e.which == 38) – t …
