Search Results

0
votes

IE problem: keyboard interaction with checkbox

Unfortunately, IE handles onchange differently than other browsers. IE interprets it to mean "on blur after change". Note that while this isn't very useful, it is technically correct according to t …
1
vote

using jquery to insert javascript (for Quicktime) into a <div>

Without knowing the content of your loadplayer.js file, it will be difficult to give you a solution. For example, if the script attempts to do a document.write() after the page has loaded, …
2
votes

What’s the difference between “Array()” and “[]” while declaring a JavaScript array?

For more information, the following page describes why you never need to use new Array(): http://yui …
2
votes

Getting jQuery to work in Jetpack

I'm not familiar with jetpack, but your jquery seems to be quite messed up. If "doc" is an HTML document, then doing $(doc).each() doesn't really make sense. It would only loop once, and "t …
1
vote

Can I tell anything about a hyperlink that was clicked in JavaScript?

If you cannot change the onclick="determine()" in your HTML, but you can change the determine() function, then I think your best bet is to: Leave the determine() function blank so it doesn' …
0
votes

Can I tell anything about a hyperlink that was clicked in JavaScript?

Another solution: Add an onclick handler to the document. When a user clicks the link, the click event will "bubble" up to the window, and you will have access to the event to determine whi …
3
votes

A question about referencing functions in Javascript

Good question. It shouldn't cause any JavaScript problems. Other things to consider: you are potentially exposing your admin capabilities to the world when you do this, which might be usefu …
0
votes

jQuery Ajax JavaScript Execution

When you add HTML to an element using jQuery, first jQuery searches for any SCRIPT elements in the HTML. If the HTML contains SCRIPT SRC="", then jquery attempts to asynchronously fetch the javascr …
6
votes

A jQuery question about variables and selectors

A best practice that many people use when they create a variable like this is to name it starting with $, to indicate that it is a jquery object. So you could name the variable $o, and you can dire …
3
votes

How to prevent Javascript injection attacks within user-generated HTML

Whitelist for elements and attributes is the only acceptable choice in my opinion. Anything not on your whitelist should be stripped out or encoded (change <>&" to entities). Also b …