Be Excellent To Each Other

And, you know, party on. Dude.

All times are UTC [ DST ]




Reply to topic  [ 172 posts ]  Go to page 1, 2, 3, 4  Next
Author Message
 Post subject: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 12:17 
SupaMod
User avatar
Est. 1978

Joined: 27th Mar, 2008
Posts: 69813
Location: Your Mum
Those using the default branding might get a little surprise in the PM section.

Clever design types: Can you change the image below to read 'reply all'?
Image

_________________
Grim... wrote:
I wish Craster had left some girls for the rest of us.


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 12:18 
User avatar
Ready for action

Joined: 9th Mar, 2009
Posts: 8551
Location: Top Secret Bunker
yay! :)


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 12:22 
SupaMod
User avatar
Est. 1978

Joined: 27th Mar, 2008
Posts: 69813
Location: Your Mum
Bored geeks: It's all using Javascript and some lazy 'split' stuff:
Code:
$("document").ready(function() {
    //add new link
    $('img[alt="Reply to message"]').after(' <a href="#null" id="reptoall">Reply All</a>');

    //get reply names and change url on link click
    $("#reptoall").click(function() {
        var names = '';
        var namelist = '';
        $("td.genmed").each(function() {
           if ($(this).text() == 'To:') {
                names = $(this).siblings("td").html().split('</a>');
            }
        });
        for (var i in names) {
            var littlename = names[i].split('>');
            if(littlename[1] == "&nbsp;" || littlename[1] == undefined) {
                continue;
            }
            namelist += littlename[1] + "|-|-|";
        }
        namelist = namelist.substr(0, (namelist.length - 5));

        var myhref = $('img[alt="Reply to message"]').parent("a").attr("href") + "&repto=" + namelist;
        window.location = myhref;
    });

    //see if there are URL vars called 'repto'
    var repall = getUrlVars()["repto"];
    if (repall != undefined) {
         var thisisme = '';
         //get my username and remove it from the list
         $("td.genmed a").each(function() {
             if ($(this).text().substr(0, 8) == " Logout ") {
                 thisisme = $(this).text().substr(10).replace(" ]", "");
             }
         });
         var repnames = repall.split("|-|-|");
         for (var i in repnames) {
             var n = repnames[i];
             if (n == thisisme) {
                 continue;
             }

             //add this name to the 'reply to' box
             var current = $("textarea[name='username_list']").val();
             var decoded = decodeURI(n);

             current += decoded  + '\n';

             $("textarea[name='username_list']").val(current);
         }
         
         //click the 'add names' button
         $("input[name='add_to']").click();
    }
});

function getUrlVars() {
    var vars = [], hash;
    var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
    for(var i = 0; i < hashes.length; i++) {
        hash = hashes[i].split('=');
        vars.push(hash[0]);
        vars[hash[0]] = hash[1];
    }
    return vars;
}

_________________
Grim... wrote:
I wish Craster had left some girls for the rest of us.


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 12:28 
User avatar

Joined: 30th Mar, 2008
Posts: 14450
Location: Shropshire, UK
Curse you ;)


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 12:33 
SupaMod
User avatar
Est. 1978

Joined: 27th Mar, 2008
Posts: 69813
Location: Your Mum
I got bored. The test PM I was using with the mods while I built it was called 'Gazchap sucks' ;)

Next up - fix my phone.

Next next up - Phone template!

_________________
Grim... wrote:
I wish Craster had left some girls for the rest of us.


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 12:35 
User avatar

Joined: 30th Mar, 2008
Posts: 14450
Location: Shropshire, UK
Hahaha.

I wouldn't have considered using JS to do it, fair play.


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 12:37 
SupaMod
User avatar
Est. 1978

Joined: 27th Mar, 2008
Posts: 69813
Location: Your Mum
Neither did I until yesterday.

_________________
Grim... wrote:
I wish Craster had left some girls for the rest of us.


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 12:39 
User avatar
Hibernating Druid

Joined: 27th Mar, 2008
Posts: 49455
Location: Standing on your mother's Porsche
Grim... wrote:
Those using the default branding might get a little surprise in the PM section.

Clever design types: Can you change the image below to read 'reply all'?
Image

On it.

_________________
SD&DG Illustrated! Behance Bleep Bloop

'Not without talent but dragged down by bass turgidity'


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 12:41 
SupaMod
User avatar
Est. 1978

Joined: 27th Mar, 2008
Posts: 69813
Location: Your Mum
Dunno if any of these will help: styles/subsilver2/imageset/en/

_________________
Grim... wrote:
I wish Craster had left some girls for the rest of us.


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 12:41 
User avatar

Joined: 30th Mar, 2008
Posts: 1982
Attachment:
button_pm_reply.gif


You do not have the required permissions to view the files attached to this post.


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 12:42 
User avatar

Joined: 30th Mar, 2008
Posts: 1982
Oh, ignore me. Zardoz's will be better.


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 12:43 
SupaMod
User avatar
Commander-in-Cheese

Joined: 30th Mar, 2008
Posts: 49252
I'm not convinced. Zardoz' will likely feature a penis.

_________________
GoddessJasmine wrote:
Drunk, pulled Craster's pork, waiting for brdyime story,reading nuts. Xz


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 12:44 
User avatar
Hibernating Druid

Joined: 27th Mar, 2008
Posts: 49455
Location: Standing on your mother's Porsche
£12


You do not have the required permissions to view the files attached to this post.

_________________
SD&DG Illustrated! Behance Bleep Bloop

'Not without talent but dragged down by bass turgidity'


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 12:44 
User avatar
Bouncing Hedgehog

Joined: 27th Mar, 2008
Posts: 26314
Oh, but I like Nik's little upside down 'e' a! Hehe, so cute :luv:

_________________
Image


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 12:45 
User avatar
Hibernating Druid

Joined: 27th Mar, 2008
Posts: 49455
Location: Standing on your mother's Porsche
Keep watching.

_________________
SD&DG Illustrated! Behance Bleep Bloop

'Not without talent but dragged down by bass turgidity'


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 12:53 
SupaMod
User avatar
Est. 1978

Joined: 27th Mar, 2008
Posts: 69813
Location: Your Mum
Nik wrote:
Oh, ignore me. Zardoz's will be better.

I liked yours more, Nik, but I went with Zardoz's. I can't stand to think of a bald man crying.

All done!

_________________
Grim... wrote:
I wish Craster had left some girls for the rest of us.


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 12:55 
User avatar
Hibernating Druid

Joined: 27th Mar, 2008
Posts: 49455
Location: Standing on your mother's Porsche
Grim... wrote:
I can't stand to think of a bald man crying.

Remind you of when I discharged on your face?

_________________
SD&DG Illustrated! Behance Bleep Bloop

'Not without talent but dragged down by bass turgidity'


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 13:05 
User avatar
Hibernating Druid

Joined: 27th Mar, 2008
Posts: 49455
Location: Standing on your mother's Porsche
Grim... wrote:
I got bored. The test PM I was using with the mods while I built it was called 'Gazchap sucks' ;)

Next up - Attach huge wings to my back.

Next next up - Bellow 'Gordon's ALIVE?!'

_________________
SD&DG Illustrated! Behance Bleep Bloop

'Not without talent but dragged down by bass turgidity'


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 13:10 
Awesome
User avatar
Yes

Joined: 6th Apr, 2008
Posts: 12359
Good work Grimster. This'll come in handy for Mafia then.

Hurry up Trooper!

_________________
Always proof read carefully in case you any words out


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 13:12 
SupaMod
User avatar
Est. 1978

Joined: 27th Mar, 2008
Posts: 69813
Location: Your Mum
Mr Russell wrote:
Good work Grimster.

viewtopic.php?p=523349#p523349

_________________
Grim... wrote:
I wish Craster had left some girls for the rest of us.


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 13:14 
Awesome
User avatar
Yes

Joined: 6th Apr, 2008
Posts: 12359
Grim... wrote:
Mr Russell wrote:
Good work Grimster.

viewtopic.php?p=523349#p523349


I saw it. :D

_________________
Always proof read carefully in case you any words out


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 14:29 
User avatar
ugvm'er at heart...

Joined: 4th Mar, 2010
Posts: 22407
Grim... wrote:
I got bored. The test PM I was using with the mods while I built it was called 'Gazchap sucks' ;)

Next up - fix my phone.

Next next up - Phone template!


next next next up - external link opens new tab


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 14:29 
User avatar
ugvm'er at heart...

Joined: 4th Mar, 2010
Posts: 22407
Mr Russell wrote:
Good work Grimster. This'll come in handy for Mafia then.

Hurry up Trooper!


If I knew what i needed to do to start it, I would :D


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 14:30 
User avatar
Part physicist, part WARLORD

Joined: 2nd Apr, 2008
Posts: 13421
Location: Chester, UK
Trooper wrote:
next next next up - external link opens new tab


Don't make me destroy you. And a pre-emptive ‘Fuck off’ to Craster before he belms in.


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 14:50 
SupaMod
User avatar
Est. 1978

Joined: 27th Mar, 2008
Posts: 69813
Location: Your Mum
Trooper wrote:
Grim... wrote:
I got bored. The test PM I was using with the mods while I built it was called 'Gazchap sucks' ;)

Next up - fix my phone.

Next next up - Phone template!


next next next up - external link opens new tab

Code:
$("document").ready(function() {
$("a").each(function() {
    if ($(this).attr("href").substr(0, 4) == "http") {
        window.open($(this).attr("href"));
        return false;
    }
});
});

It's not because I can't ;)

In seriousness, though - if you use greasemonkey or something you could probably just add that code.

_________________
Grim... wrote:
I wish Craster had left some girls for the rest of us.


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 15:10 
User avatar
ugvm'er at heart...

Joined: 4th Mar, 2010
Posts: 22407
Grim... wrote:
Trooper wrote:
Grim... wrote:
I got bored. The test PM I was using with the mods while I built it was called 'Gazchap sucks' ;)

Next up - fix my phone.

Next next up - Phone template!


next next next up - external link opens new tab

Code:
$("document").ready(function() {
$("a").each(function() {
    if ($(this).attr("href").substr(0, 4) == "http") {
        window.open($(this).attr("href"));
        return false;
    }
});
});

It's not because I can't ;)

In seriousness, though - if you use greasemonkey or something you could probably just add that code.


Chrome has support for .user.js scripts built in, but this code does no worky using that approach.


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 15:13 
User avatar
Part physicist, part WARLORD

Joined: 2nd Apr, 2008
Posts: 13421
Location: Chester, UK
Trooper wrote:
Chrome has support for .user.js scripts built in, but this code does no worky using that approach.


You'd need to ensure the jQuery Javascript library is being loaded in first. I'm sure Grim... could write it in straight up JS, but it'd probably be an arse.


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 15:14 
SupaMod
User avatar
Est. 1978

Joined: 27th Mar, 2008
Posts: 69813
Location: Your Mum
Looks like it's because not all anchors have href attributes. Give me a sec.

_________________
Grim... wrote:
I wish Craster had left some girls for the rest of us.


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 15:17 
User avatar
ugvm'er at heart...

Joined: 4th Mar, 2010
Posts: 22407
However this does

Code:
var a = document.getElementsByTagName("a");
for (i=0;i<a.length;i++) {

        if (a[i].target="_self") {
            a[i].target="_blank"
        }

}


IN YOUR FACE BETEO!!!


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 15:17 
SupaMod
User avatar
Est. 1978

Joined: 27th Mar, 2008
Posts: 69813
Location: Your Mum
http://www.google.com

_________________
Grim... wrote:
I wish Craster had left some girls for the rest of us.


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 15:18 
User avatar
ugvm'er at heart...

Joined: 4th Mar, 2010
Posts: 22407
Or did you fix t'other while I was writing my script? :D


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 15:18 
SupaMod
User avatar
Est. 1978

Joined: 27th Mar, 2008
Posts: 69813
Location: Your Mum
Er - doesn't that open every link in a new window?

_________________
Grim... wrote:
I wish Craster had left some girls for the rest of us.


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 15:21 
SupaMod
User avatar
Est. 1978

Joined: 27th Mar, 2008
Posts: 69813
Location: Your Mum
If it does, this works:
Code:
$("document").ready(function() {
   $(".postlink").each(function() {
      $(this).attr("value", $(this).attr("href"));
      $(this).click(function() {
         window.open($(this).attr("value"));
      });
      $(this).attr("href", "#null");
   });
});

_________________
Grim... wrote:
I wish Craster had left some girls for the rest of us.


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 15:22 
User avatar
ugvm'er at heart...

Joined: 4th Mar, 2010
Posts: 22407
Grim... wrote:
Er - doesn't that open every link in a new window?


Doh, yes it does! :D


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 15:25 
User avatar
ugvm'er at heart...

Joined: 4th Mar, 2010
Posts: 22407
Grim... wrote:
If it does, this works:
Code:
$("document").ready(function() {
   $(".postlink").each(function() {
      $(this).attr("value", $(this).attr("href"));
      $(this).click(function() {
         window.open($(this).attr("value"));
      });
      $(this).attr("href", "#null");
   });
});


Not here it don't :(


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 15:26 
SupaMod
User avatar
Est. 1978

Joined: 27th Mar, 2008
Posts: 69813
Location: Your Mum
Huh, it did for me.

Well, just change yours to look out for objects with the class 'postlink'.

_________________
Grim... wrote:
I wish Craster had left some girls for the rest of us.


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 15:26 
SupaMod
User avatar
Commander-in-Cheese

Joined: 30th Mar, 2008
Posts: 49252
Malabelm wrote:
Trooper wrote:
next next next up - external link opens new tab


Don't make me destroy you. And a pre-emptive ‘Fuck off’ to Craster before he belms in.


Whatever, Malabelm.

_________________
GoddessJasmine wrote:
Drunk, pulled Craster's pork, waiting for brdyime story,reading nuts. Xz


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 16:14 
User avatar
ugvm'er at heart...

Joined: 4th Mar, 2010
Posts: 22407
Grim... wrote:
Huh, it did for me.

Well, just change yours to look out for objects with the class 'postlink'.


My (very) limited skills desert me

Code:

var a = document.getElementsByTagName("a");
for (i=0;i<a.length;i++) {
           if (a[i].class="postlink") {
              if (a[i].target="_self") {
                  a[i].target="_blank"
           }
   }
}



Something like that, that actually works you mean? :D


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 16:23 
SupaMod
User avatar
Est. 1978

Joined: 27th Mar, 2008
Posts: 69813
Location: Your Mum
Close -
Code:
if (a[i].className == "postlink")
I think. Then ditch the next if statement and set them all to _blank.

_________________
Grim... wrote:
I wish Craster had left some girls for the rest of us.


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 16:27 
SupaMod
User avatar
Est. 1978

Joined: 27th Mar, 2008
Posts: 69813
Location: Your Mum
Code:
var a = document.getElementsByTagName("a");
for (var i=0;i<a.length;i++) {
   if (a[i].className == "postlink") {
      a[i].target="_blank";
   }
}

works at my end.

_________________
Grim... wrote:
I wish Craster had left some girls for the rest of us.


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 16:28 
User avatar
ugvm'er at heart...

Joined: 4th Mar, 2010
Posts: 22407
Grim... wrote:
Code:
var a = document.getElementsByTagName("a");
for (var i=0;i<a.length;i++) {
   if (a[i].className == "postlink") {
      a[i].target="_blank";
   }
}

works at my end.


Heh, I was just about to post saying I got this working

Code:

var a = document.getElementsByTagName("a");
for (i=0;i<a.length;i++) {
           if (a[i].className == "postlink") {
                  a[i].target="_blank"
   }
}


Cheers dude! Does this mean I can add developer to my CV :D


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 16:30 
SupaMod
User avatar
Est. 1978

Joined: 27th Mar, 2008
Posts: 69813
Location: Your Mum
Maybe.

You can make it a little better by adding a check for the link to actually be external (rather than a link within the forum itself):
Code:
var a = document.getElementsByTagName("a");
for (var i=0;i<a.length;i++) {
   if (a[i].className == "postlink" && a[i].href.substr(0,4) == "http") {
      a[i].target="_blank";
   }
}

_________________
Grim... wrote:
I wish Craster had left some girls for the rest of us.


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 16:36 
User avatar
ugvm'er at heart...

Joined: 4th Mar, 2010
Posts: 22407
Grim... wrote:
Maybe.

You can make it a little better by adding a check for the link to actually be external (rather than a link within the forum itself):
Code:
var a = document.getElementsByTagName("a");
for (var i=0;i<a.length;i++) {
   if (a[i].className == "postlink" && a[i].href.substr(0,4) == "http") {
      a[i].target="_blank";
   }
}


I am undecided on that, I may actually want links even within the forum to open in a new tab, but I won't say that as Malabar will go totally ballistic! :D

Cheers for the help though, I'm happy, you're happy, Malabar is unhappy. Good result all round I think ;)

edited to add: I've sent you little present for the help :)


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 16:37 
User avatar
Part physicist, part WARLORD

Joined: 2nd Apr, 2008
Posts: 13421
Location: Chester, UK
Trooper wrote:
I am undecided on that, I may actually want links even within the forum to open in a new tab, but I won't say that as Malabar will go totally ballistic! :D

Cheers for the help though, I'm happy, you're happy, Malabar is unhappy. Good result all round I think ;)


Heh. I'm fine with people fucking around with scripts on their own computer. It's when such stupid things become default behaviour in systems that I get angry.


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 16:38 
SupaMod
User avatar
Commander-in-Cheese

Joined: 30th Mar, 2008
Posts: 49252
Please to be making it default behaviour please.

_________________
GoddessJasmine wrote:
Drunk, pulled Craster's pork, waiting for brdyime story,reading nuts. Xz


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 16:40 
User avatar
ugvm'er at heart...

Joined: 4th Mar, 2010
Posts: 22407
Craster wrote:
Please to be making it default behaviour please.


What browser are you using, I can tell you how to install my little script if you like?


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 16:44 
SupaMod
User avatar
Commander-in-Cheese

Joined: 30th Mar, 2008
Posts: 49252
IE, so no natty little scripting support for me.

_________________
GoddessJasmine wrote:
Drunk, pulled Craster's pork, waiting for brdyime story,reading nuts. Xz


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 16:45 
User avatar
ugvm'er at heart...

Joined: 4th Mar, 2010
Posts: 22407
In that case you don't deserve any help ;)


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 16:46 
SupaMod
User avatar
Commander-in-Cheese

Joined: 30th Mar, 2008
Posts: 49252
Pfft. IE9 is a lovely browser. I prefer everything about it to Chrome or FF - other than the lack of scripting support.

_________________
GoddessJasmine wrote:
Drunk, pulled Craster's pork, waiting for brdyime story,reading nuts. Xz


Top
 Profile  
 
 Post subject: Re: REPLY MOTHERFLUFFIN' ALL
PostPosted: Wed Feb 16, 2011 16:49 
User avatar

Joined: 30th Mar, 2008
Posts: 16677
Does it synchronise your bookmarks like Chrome does?


Top
 Profile  
 
Display posts from previous:  Sort by  
Reply to topic  [ 172 posts ]  Go to page 1, 2, 3, 4  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 0 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search within this thread:
You are using the 'Ted' forum. Bill doesn't really exist any more. Bogus!
Want to help out with the hosting / advertising costs? That's very nice of you.
Are you on a mobile phone? Try http://beex.co.uk/m/
RIP, Owen. RIP, MrC. RIP, Dimmers.

Powered by a very Grim... version of phpBB © 2000, 2002, 2005, 2007 phpBB Group.