-1
votes
jQuery won’t parse my JSON from AJAX query
{ title: "One", key: "1" }
Is not what you think. As an expression, it's an Object literal, but as a statement, it's:
{ // new scope
tit …
1
vote
jQuery each tr.children is undefined in Firefox 3.0
if(!filterPattern.test($.trim(this.children[2].innerHTML)))
When an 'each' callback is invoked by jQuery, 'this' is a direct browser DOM node, not a jQuery object.
…
0
votes
JavaScript synchronous custom prompt
i need them to be synchronous.
You may have to reconsider your needs. With IE7+ disallowing even window.prompt(), there's no cross-browser means of receiving sy …
0
votes
Can you wait for javascript callback?
jConfirm('are you sure?', 'Confirmation Dialog',
function(r) {
result = r;
response = true;
return r;
}
);
if (response == true) {
This bet …
2
votes
Smart Quotes Using JQuery
Assuming you're talking about trying to replace " and ' with smart quotes automatically: it's not necessarily a good idea. Algorithms to choose the right way for the quotes to face are fragile and …
4
votes
Hide/Show Column in an HTML Table
I would like to do this without attaching a class to every td
Personally, I would go with the the class-on-each-td/th/col approach. Then you can switch columns …
17
votes
Is jQuery always the answer?
Do you think there's too much of a tendency to use JQuery
To use JQuery? No. It's a reasonable JS library with many purposes, in real life.
OTO …
3
votes
Appending a block of javascript to the DOM fails in production - but not in dev
Don't appendChild to 'document'; <script> can't go there and you should get a HIERARCHY_REQUEST_ERR DOMException according to the DOM Level 1 Core spec. The only element that can go in the Docum …
0
votes
Turning TIMESTAMP sql into 12 hour time
The output page is your presentation layer. Don't mix up presentation issues into the database layer. Especially don't force a denormalisation just for presentation's sake.
i …
2
votes
JQuery , set attribute for <a> tag
to set a "hash" attribute for HTML anchor element "a"
The <a> element (HTMLLinkElement) already has a DOM Level 0 hash property. It is used like …
2
votes
Using jQuery to find the number of TR elements in a given table
Plain Old DOM:
document.getElementById('table').rows.length;
is going to be much more efficient than asking jQuery to go work out the selector and return every row …
3
votes
How to have proper different actions from left and right click on Firefox
Yeah, browsers traditionally send right-clicks to the onclick handler, with the event.which property set to 3 i …
1
vote
Fix for background-position in IE
However line 33 is a blank line.
It'll be line 33 of one of your .js files, not line 33 of the HTML itself. IE fails to report which actual file the error was i …
1
vote
Can you do this using jquery?
Is it possible to do this from within a class?
$("#" + field).click(this.validate);
“this.validate” is problematic. JavaScript does not have bound m …
5
votes
How to select html nodes by ID with jquery when the id contains a dot?
@Tomalak in comments:
since ID selectors must be preceded by a hash #, there should be no ambiguity here
“#id.class” is a valid selector that requires b …
