I was wondering if it's possible to create a hyperlink on Unique IDs I have on tableau to open a webpage that pre-enters the Unique ID on the web page's search bar and load it?
For example let's say i have a unique ID ABCD12345, when I click on it, I want it to load a web page on Internet Explorer(workplace still uses IE unfortunately...)
that will automatically enter the UNIQUE ID ABCD12345 into its search bar and open the web page based on that Unique ID.
Note: unfortunately the webpage's search page URL does not contain any components of the unique ID, so embedding is out of question I'm afraid...
Any help would be much appreciated!
Related
i am using react-calendly for embedded another website to my website (using InlineWidget react calendly ). i need to hide some fields like name, email on my webpage that are currently appearing from that ebedded url .please give some suggestion as i don't see any props in react-calendly.
You cannot hide the standard name and email fields from the Calendly booking page. Even if you are prefilling them from your website, the invitee has to confirm these details when booking, per current design.
To begin with, I'm fairly knowledgeable with both html5 and css3. Right now I'm trying to create a website that allows visitors to edit website content so that all visitors are able to see the edits. I know about contenteditable but this attribute does not last when the page is refreshed and no other visitors to see the edits. For example:
<p> Edit me please </p>
A visitor would be able to edit the element above by visiting the website and simply selecting and typing. Also I have heard that javascript, jquery, sql, and php can all allow visitors to edit website content but I don't know which is the best.
To sum up, if anyone knows how to allow visitors of a website to edit its' content it would be much appreciated to share their knowledge.
Create a database table (lets call it "strings") , and just define 2 columns - "string_identifier" and "string_value"
When you render the page, simply query the database to fetch the strings and their identifiers. Each editable element should have an attribute containing its identifier.
You can use jquery to capture the click event on all editable elements, and replace it with an input with that text.
Then assign an event handler to that input, so when the enter key is pressed, it sends a request to a php script (with the identifier and new string as data) on the server to update the database with the new string.
If you would like live updates to all other clients (no need to refresh), use jquery to continuously request a file on the server (endless loop), which will return a JSON object containing all the strings. Then go through and replace the text of all editable elements on the data with the new strings you have received from the server.
With GTM please advise what 'd be the overall process [fm Custom html Tag to JS] or the big picture on how to fire dynamic html code like a div content (with text or image) according a rule such as the referral or cookie variable ?
Scenario : if a visitor come from google organic, then display a specific text paragraph or a banner at the beginning of the page.
Thanks a lot.
Create a new variable of the referrer type. Create a variable for the page url.
Create a trigger that fires
if the referrer starts with google (or www.google)
the page url does not contain utm_ (campaign parameters for adwords start with utm_)
the page url does not contain gclid (glcid is the parameter used in Adwords auto tagging)
Attach the trigger to your HTML tag (i.e. "fire tag when visitors comes via google but is not an adwords campaign").
The same principle can be used for other triggers (i.e. check for specific campaign parameters in the url, check if the referrer is empty on the landing page to check for direct visits etc).
I am creating a Google chrome plugin that injects a button onto all Facebook articles/posts. On click, i would like to query the graph API that Facebook provides and receive the post that the button is injected onto from Facebook.
Does anybody know how to do this or if this is even possible?
I have tried just using JavaScript to search the HTML that the button is injected onto and navigate through the HTML elements in order to find the text content, but this gets very messy quickly.
I was just wondering if somebody knew if the HTML elements contain some sort of identifier that will allow me to query the graph API and receive the specific post im looking for. The HTML does contain the users username but not the specific post ID.
Thanks for reading.
I haven't touched the Facebook graph-API, but if you're just looking for post ID's from the home page on Facebook you can do a simple document.getElementsByClassName("uiStreamSource") and then get all <a> elements inside. The last part of each href always contains the specific post ID.
On Mouse-over i wish to show user information such as User Id, User Name, User Location, User Age etc. All this info would be coming from database. As well, this information would be in a rectangular block that would actually come-up on Mouse-over.
I am aware that JavaScript could be use to show div (in mouse-over) but don't know how to fetch from database?
Plus the application is a Windows Based Asp.net Application. I am not aware whether that could be possible in Windows based as i'm web based developer.
Thanks for all your inputs.
You could use the jQuery qtip plugin that can display dynamic content, see a documentation at
http://craigsworks.com/projects/qtip/docs/tutorials/#dynamic
and a demo at
http://craigsworks.com/projects/qtip/demos/content/loading
The url parameter should point at an aspx page that show the text that is loaded from database.