New HIRECLICK Widget Coding for Subsplash - widget

I am trying to embed a widget piece of coding from New HIRECLICK into my Subsplash website platform, but it will not show. Is this coding that the website provided me correct? I tested it on another platform and it worked, so if anyone has specific knowledge with how to embed code on Subsplash, please help!
Here is the code:

Related

Create a HTML project in GitLab

I am trying to host a static web page in gitlab. But the problem is that the main page appears in a url like this:
https://anycustomname.gitlab.io/tutorials/
But I don't want the /tutorials/ at the end of the URL.
I want people to visit my website by entering the following:
https://anycustomname.gitlab.io
And not this:
https://anycustomname.gitlab.io/tutorials
I know it is possible.
I just don't know how to configure this.
Google and YouTube were not much of a help.
Thanks
This is covered in the documentation.
You need to name your project anycustomname.gitlab.io instead of tutorials.

Advice Needed -- Converting to IFRAME google apps Script

I am stuck on converting my web app to IFRAME. I have stripped the code back as much as i can and the script itself works to a point.
The issue i am having is when it was running in NATIVE, it would return some html once complete, now it gets to that point and just sits there although it has done everything correctly to that point.
I am new to this and not sure if i should post code or a link to the web app but any help would be gratefully received.
Link to web app
https://docs.google.com/spreadsheets/d/1hXdgqwKAfbouV5CHo4wLJTpbP_d6TLIANlsU1Fvv0xk/edit?usp=sharing
You can create an iframe with the link in src attribute.
HTML
<iframe src="https://docs.google.com/spreadsheets/d/1hXdgqwKAfbouV5CHo4wLJTpbP_d6TLIANlsU1Fvv0xk/edit#gid=703430807">
</iframe>
This code can you include in your website. Let me know if this is what you want.
See this fiddle

Web worker not working html5

i have recently started to program in html5,
My friend asked me to build him a youtube video to gif, i have zero idea how to do this, he wants it to sit in his computer (with a web server).
I am looked around in google for few hours before coming in this time because i know this is not google.
So, i found this code - http://techslides.com/demos/video/generate-animatedgif.html, on hes website its working like a charem right? so. he said, copy this template to your web server and it will work.
Well, i did just that - look what happnd -
w.js:3 Uncaught ReferenceError: Worker is not defined
IF NEEDED, i can upload and share my link here if needed. But i will be really happy if someone can tell me what am i doing worng or give me another web that can create gifs ( that you can download the html and host in your own server).
Ty very much, please. i know this is not the reguler qustion in stackoverflow, but please dont close this theard, i ask for help.
Make sure you have this line of code
var worker = new Worker('w.js');
in your html file
So, it seems that web workers can only work if you create a file for them,
So, my answer is simple. I created a w.js file with the code inside, and it works.
Good day all.

source code for monodroid map tutorial

i'm trying to follow this tutorial here
http://docs.xamarin.com/android/tutorials/Maps_and_Location/Part_2_-_Maps_API
but am stuck at the overlay part.. some part of the article mentioned that there's supposed to be a source code that came with the tutorial but I can't find it anywhere... anyone here knows where to get the supposed source code?
The sample code is linked to from the first page of the tutorial: MapsAndLocationDemo.zip

Can I start a webview out of view, scrape the html, and post forms through it?

I'm attempting to develop an application that scapes html of a site for relevant data and then display it back to the user in a more UI friendly way. I'm assuming that you can start a webView by
mWebView = (WebView) findViewById(R.id.webview);
but never setting the content to the actual view. So now my question is, can I take the html from the webview, scrape it, then somehow have the webview post back the forms, all while staying in the background? Any help is appreciated.
Or does anyone know of source such as htmlunit that will compile within android?
I have found out how to extract the HTML from the WebView using JavaScript thanks the guide on this site http://lexandera.com/category/webview_examples/ but I am still searching on how to return post forms to webView. Perhaps through javascript aswell?