0
votes
What good Feed API (Javascript or exposed via web services) are there?
Duplicate of http://stackoverflow.com/questions/992038/what-good-feed-api-jav …
2
votes
How many webpage on the web make use of JavaScript ?
This is what Robert Gould refers to MAMA: What is the Web made of?
…
2
votes
Prevent IE from refreshing when keypress is handled
I dont't think thats possible and I guess it shouldn't be too.
I looks like I must rethink...
Using …
-1
votes
Import javascript dynamically with jQuery?
The javascript you load, should itself already be using unique namespaces.
…
0
votes
Import javascript dynamically with jQuery?
AS Josh Stodola mentioned creating the variable at runtime isn't the problem
var holdsWidgetUUID = "widgetUUIDValue";
eval(holdsWidgetUUID + "= (" + data + ")");
alert(eval(holdsWid …
0
votes
how to transform array argu from object_c to javascript?
id win = [webView windowScriptObject];
NSArray *args = [NSArray arrayWithObjects:
@"sample_graphic.jpg",
[NSNumber numberWithInt:320],
…
1
vote
setting classpath for java classes(jar file) in XUL, to access via javascript.
I suggest taking a look at this extension
XQuery USE ME 1.4.7
and the following articles
…
1
vote
subtle differences between javascript and Lua
Off the top of my head
Lua ...
supports coroutines
has no restriction to just string/numbe …
0
votes
Multiple Dashboard widget instances don’t survive widget update. Any way to prevent this?
I think your calls to setPreferenceForKey and preferenceForKey look strange. Where does that null come from. Shouldn't they look like
widget.preferenceForKey(dashcode.c …
0
votes
Firefox and UniversalBrowserWrite privilege
I think UniversalBrowserWrite can only be set if the call comes from a chrome window which has itself a chrome window as parent
Maybe the …
0
votes
Javascript Object.Watch for all browsers?
I found two people which claim to have solved this problem:
Crossbrowser Object watch …
2
votes
jQuery javascript scoping problem
How about adding a return
function getCounter(){
return parseInt($('#counter').val());
}
…
0
votes
Handle user hitting ‘Enter’ key in a ASP.NET MVC web site
Use this.
$(function(){
$('input').keydown(function(e){
if (e.keyCode == 13) {
$("input[value='OK']").focus().click();
return false;
}
…
0
votes
Resize all containing elements with javascript utilizing em
The above works just fine for me in Opera, FF and IE6 (can't test others). Using these two calls do grow and shrink the text.
$('#parent').css('font-size', '2em'); // grows
$('#p …
0
votes
Prevent user from writing more than N characters in a textarea using Prototype event observers
Consider the other answers and comments. Better make a post-validation and just don't accept the post.
Nonetheless the following should work (it does in FF and IE, in Opera it doesn't. Can' …
