0

Most of the time when I click the case number on the FogBugz case view page, I don't want to be taken to the page I'm already on. I want to highlight the text so I can send the case number to someone. How do I do that?

flag

2 Answers

2

Another option that doesn't require a BugMonkey script, is to just double-click in the empty space underneath the case number. In most browsers, this should highlight the case number for you so that you can easily copy it via keyboard shortcuts or your browser's context menu.

link|flag
I just discovered this. Should we give that space alt text? – Rich Armstrong Oct 18 2010 at 17:21
0

First, install or enable BugMonkey. Then do this JavaScript on your pages:

var font_size = $('.ixBug a').css('font-size');
var bug_num = $('.ixBug a').text();
$('.ixBug a').remove();
$('<span>').appendTo($('.ixBug div'))
    .text(bug_num)
    .css({'font-size':font_size, 'font-weight':'bold'});
link|flag

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.