2
votes
Javascript Animation with Safari
I have found mootools to be pretty slick for animations, just a little smoother than JQuery.
Generally prefer JQuery, which I find to be a little more intuitive (in my head anyway), but would …
0
votes
How do I know if Javascript has been turned off inside browser?
Have never worked out how to do it without a round trip, so it depends on what your goal is.
If they have to have javascript to proceed, then I have (in .net) done things like disabling t …
1
vote
Testing HTML/CSS/Javascript skills when hiring
We used to either set up a small brief for them to work within a certain timeframe, or in some cases contract a job to them and see how they went.
I was never that worried about making s …
1
vote
Modify XML document inside the browser
You can load and modify xml in browser, but writing the file back is a different thing.
I don't know of any feasible way of writing data back to a server without some kind of server side …
2
votes
Google Chrome - javascript version
As a sidebar, the language attribute of the script tag has been deprecated since the html 4 spec, it's recommended to use type attribute instead.
…
5
votes
How to Include Multiple Javascript Files in .NET (Like they do in rails)
Also have a look at this article on codeproject:
http://www.codeproject.com/KB/aspnet/HttpCombine.aspx
…
0
votes
Where do you put your javascript?
If it's only a few hundred bytes or less, and doesn't need to be used anywhere else, I would probably inline it. The network overhead for another http request will likely outweigh any performance g …
14
votes
jQuery slideUp().remove() doesn’t seem to show the slideUp animation before remove occurs
Might be able to fix it by putting the call to remove in a callback arg to slideUp?
e.g
selectedLi.slideUp("normal", function() { $(this).remove(); } );
…
0
votes
Minimalist cacheable jQuery/javascript library for iPhone?
Given the increasing popularity of the iphone, I think it would be a really useful thing, it might be possible to remove the cross browser stuff and get it down to size.... however, it would be eve …
3
votes
What CSS/JS/HTML/XML plugin(s) do you use in Eclipse?
Personally, I use the standalone community version of Aptana for that sort of thing, as I don't really use Eclipse for anything much else these days.
There is an Eclipse plugin version of …
0
votes
word wrap in css / js
There was a loosely related problem here http://stackoverflow.com/questions/33933/tex …
2
votes
Consuming remote web services from client-side script
Have a look at JSONP, which works around the same origin policy using pretty much the approach you are describing, just make sure you trust where you get it from...
…
3
votes
Is Firebug always correct at how it lists downloads with the Net tab?
Firebug might not be 100% correct, or at least, that might not be exactly what would be happening if Firebug was turned off.
I would try using Fiddler or maybe WireShark to check the netw …
2
votes
Javascript to detect Skype?
According to skype, it might be possible:
http://www.skype.com/share/buttons/advanced.html#detection …
2
votes
Lightbox beyond the browser
Don't know if it is possible in the way you are describing without using something like flash or silverlight.
With good reason, there are certain things that remote javascript can't, and j …
