JavaScript
There are 24 entries for the tag
JavaScript
Flexible Nav for jQuery
The Flexible Nav jQuery library provides navigation not unlike the sticky tab note things that you might use to annotate large piles of paper documents. Could be very useful when used in the right context. Tags: jQuery, JavaScript
Countdownjs - A simple JavaScript API for producing an accurate, intuitive description of the timespan between two Date instances.
Countdown.js does what you might think – it counts stuff down in JavaScript (or more accurately, as per the title, it is a simple JavaScript API for producing an accurate, intuitive description of the timespan between two Date instances). Tags: JavaScript
+1 use more jQuery please
Tags: jQuery, JavaScript
csonv.js - A tiny library to fetch relational CSV data at client-side just like JSON
csonv.js comes from the department of “possibly not useful very often, but when it is useful you’ll be glad you knew about it”. There’s still a lot of use of old data formats like CSV out there, and anything that makes it easier to transform them into something sane modern is a good thing. Scary thing is that I actually have an app I can think of right now which might have been made easier if this had been used. Tags: JavaScript
Common JavaScript mistakes and pitfalls you can avoid
If you’ve not read Douglas Crockford’s book, then you should at least read this post: Common JavaScript mistakes and pitfalls you can avoid. After having worked with JavaScript for quite some time, I remember my first time reading about some of JavaScript’s coercion and thinking “Wow, really? That could really mess people up… oh… wait”. Tags: JavaScript
spin.js–a cross browser spinner requiring no images or CSS
I can’t quite work out when I’d need to use spin.js, however it’s still kind of cool. Tags: JavaScript, Web Development
FlexSlider–a responsive jQuery Slider Plugin
Responsive jQuery Slider Plugin Flexslider – the world is hardly lacking in options when it comes to jQuery image sliders, but this one looks like it’s worth a look if you’re trying to pick a slider for your next project. Plus, cupcakes! For those lacking attention, you can skip straight to the demo here. Tags: jQuery, JavaScript
New and Interesting this week – Happy 30th birthday to the PC!
Review Of Cross-Browser Testing Tools (Web Development, Posted Sunday August 7 2011, 620 Tweets, 108 Facebook likes) Google+ Update Adds Emulated iPad Support, More (Apple Mac/iPhone/iPod, Posted Monday August 8 2011, 319 Tweets) Apple offers buyback program for old iPhone, iPad, Macs (Apple Mac/iPhone/iPod, Posted Wednesday August 10 2011, 199 Tweets, 0 Facebook likes) Welcome to the Cloud - "Your Apple ID has been disabled." (.NET, Posted Friday August 12 2011, 159 Tweets, 0 Facebook likes) Survey Finds Smartphone Apps Store Too Much Personal Data (Information Security, Posted Monday August 8 2011, 132 Tweets, 30 Facebook...
VisualSearch.js– add enhanced autocomplete and auto prompting to your search boxes
VisualSearch.js enhances ordinary search boxes with the ability to autocomplete faceted search queries. Specify the facets for completion, along with the completable values for any facet. You can retrieve the search query as a structured object, so you don't have to parse the query string yourself. It looks pretty neat – although it’s the sort of UI widget which isn’t going to be suitable for every type of search (demo here). Tags: JavaScript, Web Development
DropKick.js
DropKick is a jQuery plugin to help make Dropdown lists attractive. Looks nice although the custom theme in the demo doesn’t seem to play nice in IE9. Tags: jQuery, JavaScript
Node.js inc on Windows
Porting Node to Windows With Microsoft’s Help – node.js is making its way over to Windows. I’m pleased to announce that Microsoft is partnering with Joyent in formally contributing resources towards porting Node to Windows. As you may have heard in a talk we gave earlier this year, we have started the undertaking of a native port to Windows – targeting the high-performance IOCP API. Tags: JavaScript
WowSlider
WOW Slider is a very slick looking jQuery based image slider effect which has nothing to do with World of Warcraft. Jump straight for the demos if you’ve forgotten or misplaced your Ritalin. Well worth a look if you’re looking to upgrade your image slider library of choice. Tags: jQuery, JavaScript
jQuery Image Scroller Plugin
jQuery Image Scroller Plugin is a neat effect that’s useful for navigating larger images. Jump straight to the demo to see it in action – it’s the sort of thing that’s going to work really well in specific situations, and not at all in others. Tags: jQuery, JavaScript, Web Development
prettyCheckboxes
PrettyCheckboxes makes checkboxes and radio buttons pretty! Yes, really! Surprise! I’ve played around trying to do something similar with a previous script, and have to say that the prettyCheckboxes solution looks a lot cleaner (although it still feels like a bad idea, and something you should only do if you really have to imho). Tags: JavaScript, Web Development
Microjs
Microjs.com contains a load of “micro” JavaScript frameworks. Useful if you’re trying to do something simple and need a lightweight solution rather than a full framework. It’s quite surprising how many of these there are. Tags: JavaScript
Understanding JavaScript’s delete
Understanding delete is a guide containing everything you could ever need to know about the ‘delete’ operator in JavaScript. It’s a long read, but odds are if you’re needing to use delete in your JavaScript then it’s probably important that you use it correctly. Tags: JavaScript
Some quick jQuery/JavaScript– Domsearch and Betterflow
Domsearch is a jQuery plugin that allows you to search within an element (such as a table or a list), narrowing down the inner elements using LiquidMetal. Apparently LiquidMetal “is way better than whatever else you could come up with”. Betterflow.js is a JavaScript coverflow implementation – yes, there have been a few. Betterflow looks pretty neat. Tags: jQuery, JavaScript
Essential JavaScript And jQuery Design Patterns – A Free New Book
Essential JavaScript And jQuery Design Patterns – A Free New Book Tags: Javascript, jQuery
jQuery Desktop
Sospring jQuery Desktop – it’s an impressive display of what you can do with jQuery in a browser, however I’m struggling to think of a use for it.
The impatient among you can skip straight to the demo.
Tags: jQuery, JavaScript
jQuery before/after plugin
From the ‘cool jQuery plugins which I have no use for but like the look of anyway’ comes this one, a before/after slider.
Tags: jQuery, JavaScript
IE6 update
IE6 Update is a simple if somewhat devious piece of jQuery code, which provides IE6 users with a Windows styled message which attempts to get them to update IE6 to something usable.
Possibly a valiant effort, possibly unethical.
Tags: jQuery, JavaScript
FancyUpload
FancyUpload is a widget based on Swf and Ajax (custom, with mootools dependancies). It looks pretty slick. I've got a project in the works which might benefit from it greatly, so I'll find out soon how easy it is to integrate into an ASP.NET application (samples on the website are all for php, but it has no serverside dependancies).
Tags: Ajax, JavaScript
JavaScript: SelectedIndex VS selectedIndex
An important thing to remember when coding in JavaScript is the difference between:
theElement.selectedIndex = selectedindex; vs theElement.selectedindex = selectedindex;
Technorati tags: JavaScript
Checking for nulls in JavaScript
It was useful for me, so it might be useful for you!
What's the most reliable way to check a javascript null?
Tags: ASP.NET, Javascript