Widget HTML editing - Need Links to Open in New Page - html

I have an HTML code for this ZipRecruiter Widget below. It seems to cause the links to open within the same frame, causing an error message on my website. I need the links to open to a new page altogether. I know the code to open to a new page is target="_blank">, but I can't figure out where to put this piece of code, or if this is possible to do at all with the code provided....
ZipRecruiter Widget code:
Job listings at Affera, Inc.<script type="text/javascript" src="https://www.ziprecruiter.com/jobs-widget/v1/a66da7e4/all?show_posted_days=0"></script>Provided by ZipRecruiter

Place the target="_blank" after the URL.
I have added it in the code below for you, just copy and paste it.
Job listings at Affera, Inc.<script type="text/javascript" src="https://www.ziprecruiter.com/jobs-widget/v1/a66da7e4/all?show_posted_days=0"></script>Provided by ZipRecruiter

Related

Embed Form from Planning Center to Wix

We are trying to embed a form from Planning Center People to our Wix website. The code given is not compatible with Wix and we keep getting a "parsing error unexpected token" message.
Here are the instructions from the PCP website:
Step 1: Include the ChurchCenterModal script tag on your webpage in the of your document:
Step 2: Add a link to your website (the location, name, and style is up to you):
" data-open-in-church-center-modal="true">Fill out our form!
Alternatively, if your website's content management system doesn't allow you to control the html of the link, you can also use a parameter in the URL itself:
?open-in-church-center-modal=true">Fill out our form!
Bob:
I think you need to do two things on your Wix site.
You need to add the code that is required in the header section of your page
Step 1: Include the ChurchCenterModal script tag on your webpage in
the of your document:
You do this in your site dashboard->settings->tracking tools and analytics page. Just cut and paste the code in a head section after click Add Tool.
You need to use the alternate link method for getting the form
Alternatively, if your website's content management system doesn't
allow you to control the html of the link, you can also use a
parameter in the URL itself:
Give
online
To use this you should add a button on your page and create an onClick handler that calls wix-fetch. Using the URL only not the rest of the HTML.
Should look something like this:
export function button1_click(event) {
//Add your code for this event here:
fetch("https://<your subdomain>.churchcenter.com/giving?open-in-
church-center-modal=true");
}
Hope that helps.
Steve

How to make a Link inside an iframe open in new tab

so I have a web page I've been working on that uses embedded Google Docs in an iFrame to keep it updated without having to hard code notices/updates.
I came across a problem, where if you were to click on a link it opens in the iframe instead of opening in a new tab, which is preferable. I've tried things like:
<base target="_blank" />
Any ideas on how to accomplish this? (Note that with Google docs I can't find a way to change the way links are handled, so I'd need to do that on the end of the main page.)

GAS & HtmlService embedded in google site href management

I'm working on a Google Site:
An input page uses HtmlService with a form that fills a line in a spreadsheet.
An edit page shows the data with handsometable gadget.
In every handsometable's line, there is a link to edit some information using the same script of the input page.
All works fine, but I have some problems after submit.
In the input page it's ok, with this code
new input
The href is filled with the script url, clicking the link I go to input page.
In the edit page I'd like to go back to the page with the table, with this code:
table
but using the link I open the Google site in a frame into the page..
can i do something?
Thanks
Marco
Hope this image better explain the question...
some snapshoots http://imagizer.imageshack.us/a/img537/3748/OUzFV1.jpg

Removing application titled "ThunderPenny"

I have tried to create a static HTML on my fan page using an application called ThunderPenny.
The software was unsatisfactory and I tried to remove it and just use the Iframes application to accomplish what I was trying to accomplish.
I tried to remove thunderpenny from my page and all attempts are unsucessful.
I hovered over the icon and clicked edit and remove from favorites and uninstall app.
I close the editor and try to upload a new static html and when it loads up the static html reappears that I just removed.
When I try to create a new one and try to edit to upload a website to the static html the thunderpenny page ops up again.
No matter what I try I cannot remove thunderpenny from trying to control the set up/ install process of a new static html.
I do not see a solution to this in the different Que's and do not know how to proceed, Please help.
At the top of your Page, click Edit Page > Update Page Info > More > Apps > Find the App you want to uninstall, click the X to the far right, then click Remove.

On load, redirect page in new tab/window

I have access to a page template but no access to the header template (don't ask me how!), I need to create an instant page redirect on that template. It's needs to open in a new window.
It doesn't really matter how it's done just that it opens in a new window and please bear in mind I don't have access to the header template.
I could be a bit off here (please correct me if i am) but,
you just the page to open a new page then something like this
See this for detailed usage of window.open.
You can pass html into the function as well.
<body onload="window.open(yourwindow)">
Or if you were just wanting a redirect to an existing page then
See this for detailed usage of window.location.
<body onload=window.location='www.yourlocation.com'>
Pass that whatever you want for parameters into the url.
Or if you were looking to grab some info from the page before you transition then you could just write a function that grabs the data you need from the header and pass that to the new page.