dustys
Junior Member
Posts: 443
inherit
258526
0
Nov 21, 2024 18:43:22 GMT -8
dustys
443
May 2019
dustys
|
Post by dustys on Oct 14, 2024 5:50:47 GMT -8
Without manually counting, how can I see the total entries on my dad's forums block list
|
|
#eb7100
1480
0
1
Nov 21, 2024 14:52:33 GMT -8
Craig
209,196
September 2001
cmdynasty
|
Post by Craig on Oct 14, 2024 9:02:46 GMT -8
Is this the list in the respective member's profile? If so, when on that page, enter this in to the address back on your browser and press enter.
javascript:alert(document.querySelectorAll("#user_block_list")[0].querySelectorAll("li").length)
|
|
dustys
Junior Member
Posts: 443
inherit
258526
0
Nov 21, 2024 18:43:22 GMT -8
dustys
443
May 2019
dustys
|
Post by dustys on Oct 14, 2024 9:45:54 GMT -8
Is this the list in the respective member's profile? If so, when on that page, enter this in to the address back on your browser and press enter. javascript:alert(document.querySelectorAll("#user_block_list")[0].querySelectorAll("li").length) I mean how many are on the ip block list from the entire forum.
|
|
#eb7100
1480
0
1
Nov 21, 2024 14:52:33 GMT -8
Craig
209,196
September 2001
cmdynasty
|
Post by Craig on Oct 14, 2024 10:57:13 GMT -8
Similar to the above then, but on the ban list page, and enter:
javascript:alert(document.querySelectorAll(".user_name-input").length)
|
|
dustys
Junior Member
Posts: 443
inherit
258526
0
Nov 21, 2024 18:43:22 GMT -8
dustys
443
May 2019
dustys
|
Post by dustys on Oct 14, 2024 11:49:30 GMT -8
Similar to the above then, but on the ban list page, and enter: javascript:alert(document.querySelectorAll(".user_name-input").length) maybe I'm misunderstanding. If I out it in the address bar, all it does is a Google search for the code.
|
|
inherit
29252
0
Sept 6, 2012 15:46:49 GMT -8
Derek‽
28,700
August 2004
kajiaisu
|
Post by Derek‽ on Oct 14, 2024 12:42:49 GMT -8
Similar to the above then, but on the ban list page, and enter: javascript:alert(document.querySelectorAll(".user_name-input").length) maybe I'm misunderstanding. If I out it in the address bar, all it does is a Google search for the code. Chrome won't allow you to paste JavaScript into the URL bar. But it will allow you to type the entire line of code character by character, sometimes with mixed results. Don't use autocomplete or it won't work. It's better to open the browser's console (Ctrl+Shift+I) and paste the code at the prompt (">" character). Edit: If you're on mobile, and thus don't have access to the console, don't paste the code into the URL field. Instead, use the "Text you copied" option and it will execute the JavaScript for you. Super easy.
|
|
#eb7100
1480
0
1
Nov 21, 2024 14:52:33 GMT -8
Craig
209,196
September 2001
cmdynasty
|
Post by Craig on Oct 14, 2024 13:35:39 GMT -8
I should have said that i type javascript: and then paste the rest. However, as Derek said, it is better to use the console
|
|