0
votes
What PL/SQL Libraries For Auto-Generating JSON Do You Recommend?
Ouch - generating your interface in PL/SQL. You have my sympathy.
I've never done anything like this, but Googling found …
3
votes
How do you swap DIVs on mouseover? (jquery?)
Here's my light-markup jQuery version:
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
function switchTo(i) {
$('#switch …
0
votes
3
votes
Comparison of Javascript libraries
I have to put in another vote for jQuery. It is dead-simple to use and makes your javascript much cleaner.
As an example, if you want to add …
3
votes
Why do I cannot jQuery my page under Internet Explorer
What version(s) of IE is it failing under? Is it failing for a specific complex selector? I think we need an example.
Edit: Does the problem go away if you upgrade to 1.2.6? 1.2.6 is primar …
12
votes
Should I use window.onload or script block?
The onload event is considered the proper way to do it, but if you don't mind using a javascript library, jQuery's $(document).ready() is even better.
$(document).ready(function(){
…
4
votes
Looking for a simple JavaScript example that updates DOM.
Here is a short pure-javascript example. Assume you have a div with the id "maincontent".
var newnode = document.createTextNode('Here is some text.');
document.getElementById('mainc …
1
vote
HTML drag and drop sortable tables
I recommend Sortables in jQuery. You can use it on list items or pretty much anythin …
3
votes
HTML: What’s the effect of adding ‘return false’ to an onclick event ?
Retuning false from a JavaScript event usually cancels the "default" behavior - in the case of links, it tells the browser to not follow the link.
…
0
votes
Is there a way to print all methods of an object in javascript?
Since methods in JavaScript are just properties that are functions, the for..in loop will enumerate them with an exception - it won't enumerate built-in methods. As far as I know, there is no way t …
21
votes
Is it reasonable to assume my visitors have javascript enabled?
I browse with NoScript in Firefox, and it always annoys me when I get pages that don't work. That said - know your audience. If you're trying to cater to paranoid computer security professionals - …
0
votes
Rendered pIxel width data for each character in a browser’s font
This is essentially impossible to do on the server side. In addition to the problem of people having different fonts installed, you also have kerning (the letter "f" will take up a different amount …
0
votes
Is there anyway to log Firebug ‘profile’ results to an external file?
You should be able to narrow it down by setting breakpoints in the offending JavaScript. It might be messy (especially if they "minify" their JavaScript), but I think it's your best bet.
…
0
votes
javascript Image Resize
Instead of modifying the height and width attributes of the image, try modifying the CSS height and width.
myimg = document.getElementById('myimg');
myimg.style.height = "50px";
myi …
0
votes
Problem selecting HTML elements with xpath in Internet Explorer
jQuery implements a cross-browser-compatible subset of xPath selectors with a plug-in. Your example …
