25
votes
9answers
3k views
Why don’t self-closing script tags work?
What is the reason browsers do not correctly recognize:
<script src="foobar.js" /> // self-closing script tag
Only this is recognized:
<script src="foobar.js"></script>
Is it …
21
votes
17answers
1k views
What Cross-Browser issues have you faced?
While developing for multiple sets of browsers, what issues have you faced while development due to differences in browser implementation?
To start with I am listing some of those which i faced:
A …
19
votes
9answers
5k views
How to debug Javascript/jQuery event bindings with FireBug (or similar tool)
I need to debug a web application that uses jQuery to do some fairly complex and messy DOM manipulation. At one point, some of the events that were bound to particular elements, are not fired and …
14
votes
1answer
1k views
How to find event listeners on a DOM node?
I have a page where some event listeners are attached to input boxes and select boxes.
Is there a way to find out which event listeners are observing a particular DOM node and for what event?
Events …
14
votes
11answers
24k views
Check if option is selected with jQuery, if not select a default
Using jQuery, how do you check if there is an option selected in a select menu, and if not, assign one of the options as selected.
(The select is generated with a maze of PHP functions in an app I …
13
votes
7answers
416 views
jQuery: How to select “from here until the next H2”?
I'm setting up a very straightforward FAQ page with jQuery. Like so:
<h2>What happens when you click on this question?</h2>
<p>This answer will appear!</p>
This is all …
12
votes
4answers
3k views
How do I find out which Javascript element has focus?
I would like to find out, in Javascript, which element currently has focus. I've been looking through the DOM and haven't found what I need, yet. Is there a way to do this, and how?
Edit: The reason …
10
votes
10answers
447 views
Best book to learn web development for a professional developer?
I'm a professional software developer. I've been programming in a lot of different languages over the course of more than two decades now. Picking up a new programming language is very easy for me.
…
10
votes
4answers
11k views
jQuery document.createElement equivalent?
I'm refactoring some old javascript and there's a lot of DOM manipulation going on.
var d = document;
var odv = d.createElement("div");
odv.style.display = "none";
this.OuterDiv = odv;
var t = …
9
votes
9answers
330 views
Clear form button in HTML…do we really need this?
I usually add the clear form button to HTML forms by default, but tonight I had what alcholics call a "moment of clarity". Why the hell do we add this? In all my years of using the internet I have …
9
votes
12answers
3k views
How to check if an element is really visible with javascript.
In javascript, how would you check if an object is actually visible. I don't just mean checking the visibility and display attributes. I mean, checking that the element is not
visibility:hidden or …
9
votes
1answer
2k views
How do I select text nodes with jQuery?
I would like to get all descendant text nodes of an element, as a jQuery collection. What is the best way to do that?
9
votes
13answers
979 views
What are JQuery’s limitations?
Joel always said to be careful when using 3rd party libraries. From my initial impressions, JQuery is great. What should I beware of when using it? What are it's limitations? What headaches will I …
8
votes
2answers
155 views
jQuery framework internals
Hi
I am trying to understand the internals of how jquery framework is written and finding it hard to understand the code.
Does anyone have any suggestions regarding a good way to get started.
…
8
votes
5answers
1k views
Screen Scraping from a web page with a lot of Javascript
Hello
I have been asked to write an app which screen scrapes info from an intranet web page and presents the certain info from it in a nice easy to view format. The web page is a real mess and …
