TT is broken

A place to discuss non-discipline specific items, such as mental training, ammo needs, and issues regarding ISSF, USAS, and NRA

If you wish to make a donation to this forum's operation , it would be greatly appreciated.
https://www.paypal.com/paypalme/targettalk?yours=true

Moderators: pilkguns, m1963, David Levene, Spencer, Richard H

Post Reply
UnGe
Posts: 161
Joined: Tue Mar 02, 2021 4:24 pm

TT is broken

Post by UnGe »

Broken... broken..... broken..... completely.... nobody can post....
UnGe
Posts: 161
Joined: Tue Mar 02, 2021 4:24 pm

Re: TT is broken

Post by UnGe »

<textareaname="message" id="message" rows="15" cols="76" tabindex="4" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);" onfocus="initInsertions();" class="inputbox" style="position: relative;">
</textareaname="message">


Should be changed to

<textarea name="message" id="message" rows="15" cols="76" tabindex="4" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);" onfocus="initInsertions();" class="inputbox" style="position: relative;">
</textarea>
UnGe
Posts: 161
Joined: Tue Mar 02, 2021 4:24 pm

Re: TT is broken

Post by UnGe »

While admins are fixing the site, Chrome users can install Tampermonkey extension, and add custom script

// ==UserScript==
// @name Targettalk Hack
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author UnGe
// @match http://targettalk.org/*
// @icon https://www.google.com/s2/favicons?sz=6 ... monkey.net
// @grant none
// ==/UserScript==

(function() {
'use strict';

document.body.innerHTML=document.body.innerHTML.replace(/textareaname/g,"textarea name");
})();
Post Reply