‘Revolution Calling’ by Queensrÿche
Who do you trust when everyone’s a crook?
‘Last Day on Earth’ by Duran Duran
So what would you do?
‘Rage Hard’ by Frankie Goes to Hollywood
Do not go gently…
‘Dinosaur’ by King Crimson
Somebody’s digging my bones…
‘On the Turning Away’ by Pink Floyd
Don’t join in the turning away….
‘Dreamline’ by Rush
Learning that we’re only immortal, for a limited time.
Source: thisismyjam.com
The Battle
A short retelling of a lesson learned.
JQuery for overriding the status bar
Not certain if anyone could use this, but if you have a requirement like I do that you need to ensure that the window status bar has the same text as the title attribute in the html, this is a simple JQuery script that will do that for you:
$(document).ready(function(){
$('*[title]').mouseenter(function() {
window.status=$(this).attr('title');
return true;
});
$('*[title]').focus(function() {
window.status=$(this).attr('title');
return true;
});
$('*[title]').mouseleave(function() {
blankStatus();
});
$('*[title]').blur(function() {
blankStatus();
});
$('*[title]').focusout(function() {
blankStatus();
});
});
function blankStatus() {
window.status = "";
return true;
}





