Questions tagged [javascript]
Questions about JavaScript are generally OFF-TOPIC here. You might be able to find your answer at Stack Overflow.
104 questions
0
votes
0
answers
94
views
How to list, sort and/or filter Discord Server List?
I'm trying to list all 100 servers I'm allowed to subscribe to on Discord. Also once I have that list I wish to filter and sort by activity, by alphabetically and by size.
Preferably I wish to use the ...
1
vote
0
answers
40
views
Youtube URL / Page for user account notifications?
I want to open the recent Youtube notifications in the browser/Firefox in logged-on state (new vids, posts, comments, suggestions, ... ), like when pressing the bell icon, but as a separate more ...
1
vote
0
answers
75
views
How to set V Axis formatting while updating charts via Google Script [closed]
I have a Google script to automatically adjust the 'Max' Value for the Vertical Axis based on the max value from a column in the source data. This part is working, but, the number format keeps ...
0
votes
1
answer
341
views
Removing all Youtube Comments without deleting entire channel [duplicate]
How can I remove all my youtube comments without having to delete my entire Youtube channel?
1
vote
2
answers
211
views
Replace text in document using A1 notation as variable names in order to retrieve values stored in those cell references
I have a Google Doc that contains placeholders based on A1 notation like %A1%, %B3%, %A3%, and so on.
In a Google Sheet I have values stored in the cell references that match the variable names.
I ...
1
vote
2
answers
506
views
Printing the date of a cell in the Google Apps Script console
I wrote in cell D1 the function "=today()", and in google apps script I'm trying to print it in this way:
function myFunction() {
const ss = SpreadsheetApp.getActive();
const ws = ss....
-1
votes
2
answers
864
views
While Loop does not stop when it should
I'm new to Google Apps Script. I am trying to write a while loop for a spreadsheet, but the loop isn't stopping when it should.
The spreadsheet contains a formula that returns randomized Sudoku ...
2
votes
1
answer
213
views
How to invoke the dark theme selection on Google's search page?
This is for Firefox. I know there are extensions for dark themes, but I don't want to use it because it messes up certain websites and doesn't get back to normal even after removing the extension.
...
2
votes
1
answer
2k
views
Wayback Machine: archive URLs without Javascript?
Background
I'm trying to use The Internet Archive (IA)'s Wayback Machine. Specifically, it has a functionality, archive URLs, where you can take some URL of a document you want to preserve, construct ...
1
vote
1
answer
325
views
How do you work with the Color Class array?
In Google Sheets using Apps Script, I want to read in the font color in many cells, change some values (change colors) in the array, and write them back to the cells.
I have previously used ...
0
votes
1
answer
63
views
Pulling all data from a column
tl:dr - I have a code that can work but want to make it better by pulling everything from column E into 1 message (including header)
I am trying to get the output of a singular column to post to ...
1
vote
1
answer
36
views
How do I add multiple cellvalue in a IF function?
I'm trying to add more values with "Select a name" to the script so when any of these values pop up it'll clearcontent
function onEdit(e) {
let range=e.range;
let activeRow = range....
1
vote
0
answers
459
views
How can I get image results on duckduckgo without javascript?
How can I choose to search for "image results" on DuckDuckGo with javascript disabled in my web browser?
For security reasons, I don't have javascript enabled in my browser. When I search ...
0
votes
1
answer
163
views
How to add date stamp when criteria met in google spreadsheet?
This is the current script. When a cell in column 26 is edited, a datestamp is added to the cell beside it in column 27. Now I would like to add additional criteria. Example: When col 26 value is &...
1
vote
0
answers
32
views
Use reverse geocoding to get an adress as variable
I am trying to make it so when a truck driver presses a button when he starts for the day, i can see what his location is at that very moment so i know where my drivers are starting from.
I am trying ...