Search
Categories
Meta
- Android 4 on nexus s is a big improvement. HWA for the win. 2011/12/18
- RT @kumobius: Bean's Quest World 2 update is out on the App Store! We added Game Center support, so continue or start the journey now! h ... 2011/08/11
- RT @kumobius: MMGN just awarded Bean's Quest App of the Week! http://t.co/4vq7RT7 2011/07/29
Tag Archives: jQuery
Tripping up your JavaScript in IE7
After developing an intensive JavaScript website in Firefox and testing with other browsers, including IE8 in compatibility mode I discovered IE8′s compatibility mode doesn’t simulate IE7′s JS. Hence a JS bug was bringing all of IE7′s JS processing to a … Continue reading
jQuery list insertion sort plugin
Here’s a basic jQuery sorting plugin for generic parent child relationships I wrote. Wherein ‘element’ is the html you wish to insert and ‘value’ is what the associated weight of the element I’m inserting. For now it compares the weight … Continue reading
Easy checkbox toggling with jQuery
So I needed to have a regular form checkbox toggle the visibility of a div in my webpage today. It turned out jQuery supports the concept of toggling visibility via .toggle(), which I didn’t realise until I looked it up. … Continue reading
jQuery Context Menu Plugin
Okay, this jQuery plugin (by Cory S.N. LaViska) is awesome: Tutorial Demo Basically you can achieve a right-click drop-down menu via the following jQuery code: $("#selector").contextMenu({ menu: ‘myMenu’ }); Where ‘myMenu’ is the id of the HTML you want to … Continue reading
Debugging Javascript
So far my experience with Javascript has not required too much dealing with its raw form. I’m a big fan of the jQuery library and I’ve heard described as a swiss army knife for Javascript. I think that’s an understatement … Continue reading
