Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Where can I get a list of browser differences in the implementation of DOM?
check out http://quirksmode.org/
Its been a great help to me.
It also has a wealth of classy javascript tutorials.
cheers, jrh
Okay it's only for Gecko but for Gecko specific references take a look at
http://developer.mozilla.org/en/gecko_dom_reference
i second quirksmode.org. i find it most useful via a google site search.
for example, suppose you want to see the different implementations of events
site:quirksmodes.org events
or if you want to know one browser's counterpart in a different browser, just try the one you know
site:quirksmode.org relatedtarget
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am currently looking around for a javascript example that can demonstrate the incompatibility or behavior issues in different browsers.
I have tried everything suggested here: Click here without luck.
Can anyone give me an example on this please. It is for teaching purposes.
Thanks in advance
P/S: The example should be applicable for all of the current modern browser (the latest version)
Try going to http://caniuse.com/. Different browsers will implement the latest features at different speeds and hence you can showcase the incompatibilities this way.
e.g.
(()=>console.log('hello'))();
works in chrome but not in IE11
var text = new Text('Oh, how quick that fox was!');
Works in chrome, but not IE.
There's a large list of incompatibilities at http://quirksmode.org/compatibility.html
Test page for the above constructor at http://quirksmode.org/dom/core/createElements.html
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I know that Doxygen doesn't support JavaScript files. I have also looked at js2doxy.pl script and also this:
Documenting JavaScript with Doxygen
The first option(js2doxy.pl) is not producing relevant C++ code, it is also skipping all the prototype methods and leave them blank. The second option is working but not for prototype based programming. I am looking for a filter which can support prototype based(OOP) JavaScript files. I researched a lot about it but I failed to find a better filter.
Thanks in advance!
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm just curious, which JS framework Google Keep use? I can't find any mention about that.
I can't say 100% what they use since (to my knowledge) it isn't exactly out there; but you can look into other libraries which achieve very similar layouts like: Masonry, Isotope, Salvattore, etc... There is a good chance Google is either extending functionality from that, or using it themselves.
Also to add to this question, look into the stackoverflow question I found from another user: Is there a Google Keep API?
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I would like to understand the low level details of how XMLHttpRequest works in Javascript, however I have not had any luck finding the implementation code within either the Rhino or V8 code. I'm not familiar with the code in either projects, so I may not be looking in the right spots.
Is there an available open-source implementation anywhere?
If I'm not mistaken, in the Mozilla source code this is handled by nsXMLHttpRequest.cpp.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I've used jTip (jQuery plugin) and overLIB in the past. Are there any others I should be looking into...any accepted "best" one?
see this post Recommendations for jQuery tooltips
Remember, sometimes, a simple <acronym title="long description">text</acronym> is a good way to deal with that issue.
(Good) Browsers are displaying acronyms underlined and show the title attribute in a tooltip on mouse over.
You'll need some small CSS extra-rules to make it work on IE (at least on IE 6).
However, according to that tag name and W3, <acronym> should only be used for acronyms (obviously!).
Note : You've also have the <abbr> tag with same behavior.