I received an email in my Gmail account from Google about people I might know on Google+ which contained running JavaScript with hover effects etc, at least I assume it was JavaScript, HTML5 maybe??... See below screenshot:
As you can see (kind of) is when I hovered over the ADD TO CIRCLES button, a new window slid open asking me to select a category for that person. When I ticked a category, it added a Tag with that category next to the persons name.
I have never seen an email with dynamic content like this, and I am guessing the obvious answer the email was from Google being displayed on they own email service so they can do what they like. But I would be interested in how they achieved this and could we take advantage of it in some way?
Related
I'm trying to make a bot for a website, to make purchases faster and automated. In order to do so, I am using javascript (atom) and chrome extensions. I need some help with the following things to do with chrome extension popup, which will improve the UI of my program (user interface)
1.Is there a way for the user to set a time for the code to excecute at? For example, a 24 hour clock they can edit using text boxes in the popup. Maybe this triggers a new tab which has a coutdown clock, at the end of which the code is excecuted on the website.
2.Can I create text boxes, so that the user can fill in various details such as item name and size value, that can be integrated with my main javascript code to change which product is purchased by the bot?
3.How do I create dropdown boxes for things like the category, with multiple options. Again, this must correspond with the main JS code.
4.Can I create a login page that must be filled in with a unique login before the user can access the main login page?
5.Can I create little switches?
6.Is there a way for me to customise the buttons with certain fonts, colours and sizes, and to customise the backgroud colour etc. I really want it to pop!
I know that this is a lot of questions, so please feel free to answer one or two rather thatn all of them! I have an incredibly basic understanding of HTML, so I may have some followup questions for you.
Thanks in advance,
Louis
I'm kind of a beginner to WIX Code. I have this site which I have made i.e www.rat-store.com. I am facing three problems which I know might get solved with some code but I don't know how to do it. Here are the problems:
In manual payment, I need to accept some form input from the user on a page and only if the user agrees to the terms and enters the correct date should the submit button get activated following which an otherwise collapsed image should also reveal (it's the QR code to make payment; Image 1) (www.rat-store.com/manual-pay-rat)
Image 1
I'm trying to link a repeater background to a page but it's not working. I have to create a button inside the repeater to do this. Any workarounds? I know an image will work but the thing is that the motive is to create a kind of a list which will keep on incrementing in the future and I can't just keep on drag-dropping images, text and then group them up and link. (Image 2) (www.rat-store.com/shop-by-events)
Image 2
Since WIX Stores doesn't have an inbuilt cancellation feature I built a form to substitute for the same but I want that no two same order cancellations are submitted i.e. a customer can only submit his/her cancellation request for a particular order number once. The next time s/he tries to do that it should show that the request already exists. (Image 3 and Image 4) (www.rat-store.com/cancel-orders)
Image 3
Image 4
Some help with the code and approach would really be great. I'm almost finished with my site; Only these last few things bother me. I'm attaching a screenshot of each page, serially w.r.t the question number. P.S: The order number is the number generated for each order by the Wix store app itself. I have nothing to do with that. The customer needs to enter his/her number and if that is valid we will process the request. Apologies for the length of the post.
I'd like to make a Google Form that I can email to multiple people and when they open the form to fill it out, the title will be replaced with their email.
I've tried the onOpen() trigger and from what I understand it doesn't act the way its name suggests.
Is there a way to do this?
Thank you so much!
Ben
onOpen triggers when the form is opened for editing by the developer (you), not for submission by the end users (see this question).
I don't know of a way to do what you want. The closest I can think of is using apps script to generate the same form over and over again from a list of email addresses. But then you'd have to send a different form to each person, which I'm guessing isn't going to work for you.
I have this development requirement:
On a website there is a link. When user clicks the link - it opens window (popup tab or in-page form - whatever) that allows user to SHARE current webpage to a specific facebook place - preferably one, specific group.
Example, lets say we have a webpage "AstroStuff" about astronomy that allows people to add their texts or images. There is also one facebook group "Astrolovers" for people fancied with astronomy - but not necessarily readers of that page.
After user adds some text or image, webpage should say:
"Hey, you just added nice astronomy picture, why dont you share it to a facebook group Astrolovers?".
Something like this could pop up:
Is there any way for accomplishing that?
You could simply use the Send dialog with the group id put into the to parameter. https://developers.facebook.com/docs/sharing/reference/send-dialog
(The user will be able to remove the group and/or add other recipients – but that should not matter much, right?)
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.