chill wrote:
> 2) I find that the yellow popups (tooltips?) are frustrating and
> obstructive. I never read them, and it's difficult to know where to put
> the mouse pointer so as not to trigger a popup that blocks some
> important part of the screen. Is there a way to disable them on a per
> user basis?
Do you use Firefox? Here's a 'Greasemonkey'
(https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/) script:
Code:
--------------------
// ==UserScript==
// @name Meeker titles
// @description Make "title" popups less obstructive in "forumdisplay.php"
and "New posts" views in vBulletin v4.1.
// @include http://forums.slimdevices.com/forumdisplay.php
// @include http://forums.slimdevices.com/search.php
// @require
http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
// ==/UserScript==
$(document).ready(function() {
$('div.threadinfo').each(function() {
var tmp = $(this).attr('title');
$(this).attr('title','');
$(this).find('a.title').attr('title',tmp);
$(this).parents('li.threadbit').attr('title','');
});
});
--------------------
------------------------------------------------------------------------
Soulkeeper's Profile: http://forums.slimdevices.com/member.php?userid=35297
View this thread: http://forums.slimdevices.com/showthread.php?t=94513
_______________________________________________
discuss mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/discuss