Is there a way to monitor click events on bookmarks in google documents with google apps script? I want to get bookmark id when someone selects a bookmark and than run some more code which needs that bookmark id to get processed.
Monitor click events on bookmarks (Google Apps Script)
267 Views Asked by Silko At
1
There are 1 best solutions below
Related Questions in EVENTS
- OpenLayer 3: Map pointer up event can not be triggered when the map created on overlay
- Angular scroll directive
- Setting multiple events in one ext.net button
- Detect if Application was suspended in OnNavigatedFrom for Windows Phone 8
- When in click a radio button, it scroll to the top. How to prenvent that?
- Event subscribed but null in child class (after threads initialize)
- How to get results each sec from "perf stat -d sleep 1000"
- How to register event for TextBox end editing
- Stop the installshield installation if a file is not found in vb.net
- How to capture the next event based on a condition
- Flask server to notify webclient when changes occur
- Google analytics event tracking, retrieve results
- What is the correct way to code event handlers for serializable model objects?
- Android version of NSNotificationCenter (event binding)
- Center JoptionPaneMessageDialog in parent element of the source element that generated the event
Related Questions in GOOGLE-APPS-SCRIPT
- How to display a Google Document inline image on HTML page?
- How to add Named Ranges to sub-paragraph elements in Google apps-script
- Output API data to a csv file
- automated email sending - variable in Htmlbody
- union data in multiple tabs
- How to real-time monitor the emails?
- How to pass function arguments to another function?
- Google sheers: On edit event trigger
- TypeError: Cannot read property "length" from undefined
- How to upload any file to FTP Server using Google Apps Script
- Authentication Error while using google SpreadSheet API
- Javascript on Google Sheets - Get Column Number from Prompt Input
- Apps Script, Count BG Color function on conditionally formatted cells
- Edit a google spreadsheet using javascript/client side code
- Import google spreadsheet data to google doc app script
Related Questions in ONCLICK
- show/hide multiple div tags at once and change the size of the remaining div tag
- I can't retrieve the value typed in a text input using Javascript
- javascript foreach onclick
- Why won't my Jbutton do anything on click?
- Show table when its tab is clicked but hide other tables
- Get the position of a button clicked in ListView
- Gather Touches from MainActivity
- link onclick vs. button onclick
- Input text needs a case change when button is clicked. Having trouble creating JS for this
- How to create both onClick and mouseover to a link jQuery
- I want to add my editbox data to a local table?
- How to add class to its parent div when clicked
- ResponsiveTabs add onclick in js file
- Isotope Packery Expanded State Positioning Issue
- Page is getting reloaded automatically on click event. Cannot determine why?
Related Questions in CLICK
- Is there any way to bind a click event to a div's left border in jquery?
- CasperJS click on buttons is not working
- Click Event Not Working After Class Change
- Make <a> inside jQuery autocomplete clickable
- How to get a button's ID when clicked in Windows 8 apps?
- Selenium stops running after click() function runs
- How to fill a progress bar by clicking in VB.NET?
- jQuery button to show/hide multiple divs with same id
- Detect mouse clicks on circles on HTML5 canvas
- Teamcity: Simulating click on Procceed jQuery Button to create .BuildServer in bash
- Click event not working only when used in external JS file
- Capture all click events and discard unallowed
- Exclude elements from click event handler (jquery)
- in C#, changing background image of a button after click
- Combobox ItemTemplate dont accept click
Related Questions in BOOKMARKS
- Interact with chrome bookmarks outside of extensions
- Creating Bookmark folder in browser
- How to populate word template from LOOKUP function from excel
- How can i delete a bookmark using docx4j?
- Cannot synchronise Chrome bookmarks across PC and Mac, and Windows laptops
- Bookmark to check published date
- Acrobat Javascript - Bookmark Page Count?
- Monitor click events on bookmarks (Google Apps Script)
- Change ComboBox selection based on Bookmark in the Document
- How to make bookmark that can be made in evernote chrome extention
- Change input value by javascript in bookmark
- Have a popup window appear as a mouse over that references a bookmark in a Tikiwiki
- how to add bookmark in crossrider extension?
- emacs bookmark+ :How to create a file specific bookmark file?
- User Inputted Text Fields
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
With Brian Bennett's help I managed to solve this issue with Web Apps. There is a little bit more code to write but it works.
doGet function is called when a user visits your Web App. With doGet function I opened a document with ID given through get parameters and displayed it as html. To get a html of the document I used this function.
You can find bookmarks in the html of the document as html tag with id of the bookmark. I changed the css of all this tags so I could see them (change background, height, width or something like that).
Listen to click events on those tags (bookmakrs) with jquery or javascript. If you use jquery, you need to import a jquery library. When click event happens get the id of the bookmark from the id attribute of the tag.