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

Posted in Programming | Tagged , , | Leave a comment

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

Posted in Programming | Tagged , | Leave a comment

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

Posted in Programming | Tagged | Leave a comment

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

Posted in Programming | Tagged | Leave a comment

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

Posted in Programming | Tagged , , | Leave a comment