Thứ Tư, 28 tháng 11, 2018

Youtube daily google Nov 28 2018

This video I'm going to show you how you can change links around with the help of JavaScript

and Google Tag Manager.

This can be particularly useful if you want to pass on information on the URL to another

website through the link.

All and more coming up right after this.

Hey there

and welcome back to another video of measureschool.com teaching you the data-driven way of digital

marketing.

My name is Julian.

And if you're new to the channel, we do marketing tech reviews, tutorials, and tips and tricks

videos so if you don't want to miss out, click that subscribe button.

Also that bell notification icon so you don't miss out on new videos.

Now today, we want to talk about how you can change and replace and attach something to

a link via JavaScript.

And then also with Google Tag Manager.

When would this be useful?

Well, if you want to attach something to a string that wasn't in the original link, you

can do so with Google Tag Manager.

It's particularly useful if you want to pass on information that is outside of your website

to a third party tracking tool.

So for example, to an affiliate program.

You could attach an affiliate code to the link URL, you could also try to replace something

in the URL.

Everything then numerically through Google Tag Manager.

This can be super useful.

And I'm going to show you some cases in these videos.

Now the tutorials got a little longer than I expected.

And that's why I broke them down.

In this first video, we're going to talk about how you can actually accomplish this with

JavaScript.

This is the underlying technique that will use an all the subsequent videos.

So stay tuned for the second video where I'm going to introduce some use cases where you

could be using the Replace Link functionality or the Attached Link functionality in future

videos.

We are particularly working here with affiliate links from Amazon.

So it should be quite interesting for all of you affiliate marketers out there.

Now, we got lots to cover so let's dive in.

Welcome back to our demo shop.

On this page, we have certain links that we want to change around for tracking purposes.

Now, these links will be this by product link, it takes you over to Amazon, we have three

more links of these we all want to change.

Before we implement any kind of tracking into Google Tag Manager, we should try our JavaScript

first.

So we know it's working correctly.

Now, how would you change a link with the help of JavaScript?

Let's try this out in our developer tools first.

Inside of Chrome, you can go to your modules here and then your developer tools.

This will normally open up the elements pane which will show you the HTML markup of your

page.

Now, we are interested in this by product link.

And we can utilize this tool here to hover over and click and we'll see how it's marked

up in our HTML.

This is a pretty standard HTML link AHREF.

And the AHREF attribute, we have our URL that the user will be led to.

Now we want to select all these elements that have actually Amazon in them.

How would we do that?

Well, there's a handy command in JavaScript called document.queryselectorall.

And then in parentheses, you would put in, in quotation marks, your CSS selector.

So if you wanted to have all div elements on the page, just put in div and get all the

elements on the page itself.

The handy thing is, if you open this up with this little triangle here, we can hover over

and see where these div elements are.

If you will try this out for links, we simply press the up arrow to get the last command

back, and we can change the div into a.

And we see all the links are now listed that are on this page 77.

And if we hover over them, we see here a logo which would be this logo link up here.

This is obviously not the link that we are interested in and changing.

We want to get to the link that is actually on this product page.

So we would narrow down our CSS selector.

Let's press the up arrow again.

And this time, we only want to get links that have our URL inside of the ahref attribute.

How would we accomplish this?

Well, there's a modifier that we can implement which would be two square brackets and then

the attributes that we interested in.

In our case, it would be ahref, the equal sign.

And then in double quotation marks, we will put in how the ahref should be filled.

In our particular case, I'm interested in this URL up here.

Let enter this in

and press Enter.

And we only get one element back now, which is our by product link.

Now, obviously, we are also interested in the other Amazon links on this page.

So we can modify further to include links that have the Amazon in the URL, kind of like

a contains option.

And the modifier for this is the asterisk in front of the equal sign.

And then you just have to put in your contains niche in our case, it would be simply Amazon.

And voila, we have all the three links that have Amazon in the URL selected.

Now going forward, we can utilize this link.

But let's jump back to our first query selector here, just so we can see how we can change

one link first before we change all of the other links.

So here we are back to our one link.

And exactly that link we want to change.

Now changing links involves getting to the actual attribute of ahref to change out this

URL.

How can we select the attribute with JavaScript?

Let's go back here.

And there's another command we just need to change them with a dot then we enter get attribute.

And again, in parentheses, and quotation marks, we put our desired attribute in our case,

that would be ahref.

Whoops, since we have a node list here, we actually need to select a node first, this

would be the first node.

Okay, so it would be zero.

And then we can get the attribute

with the ahref command.

Okay, and here, we get our link back that is tied to this HTML element.

Now, if you wanted to change this, there's another command.

We don't want to get this attribute.

But we want to set or change this attribute.

So we'll change this to set attribute.

And now we can utilize the ahref.

This is what we want to change and put in a new value.

Let's just put in test.

Now, this gives us back undefined.

But what actually happens under the hood, if you go back to the elements pane here,

we see that our ahref has changed to simply test.

And if you click this button, we would go to our own page with a test attached which

doesn't really exist.

Now, this doesn't make much sense.

But this would be the technique to actually change around a particular link.

The set attribute would be set to the ahref and the link that you want to have in here.

So if you wanted to make a better example, we would, for example, say, let's send this

user to measureschool.

And if the user now clicks on this my link, he goes to measureschool.com.

And so we have now changed this link around.

This obviously only happens if we execute this command before the user clicks the link.

Now, be aware, this only happens if the user would click this link.

It doesn't happen right now, for the other links.

For this, we will actually need to loop through our results.

For this, we need to write a little bit more code.

That's why I'm going to go over to the sources panel where we can open up our snippets, you

can find them right here.

You can write your own snippet.

So I'm going to open up a new snippet here.

And I have something prepared here already.

In this command, we utilize again, our query selector and get all the Amazon links.

We save them in a variable called links.

And then we iterate over these links and set the attribute to measureschool.com like we

did before.

But this now happens for all the links.

You can press this button right here, it will execute and open up the developer tools.

As we expect it returns undefined.

But now all the links up here are changed to measureschool.com, we inspect them right

here we see or change to measureschool.com.

Now, this is how you can change all links on your web page with the help of Google Tag

Manager.

In the next lesson, we're going to go through some use cases where we change links around,

attach stuff to links and make your tracking better through this technique.

For more infomation >> Change Links with Google Tag Manager (Part 1) - Duration: 9:15.

-------------------------------------------

UNBOXING Google Home Mini - Duration: 0:51.

Hi!

Unboxing!

Google Home Mini

GO

THANKS FOR WATCHING

For more infomation >> UNBOXING Google Home Mini - Duration: 0:51.

-------------------------------------------

Google está te vigiando! Mesmo no modo avião e sem cartão SIM - Duration: 3:50.

For more infomation >> Google está te vigiando! Mesmo no modo avião e sem cartão SIM - Duration: 3:50.

-------------------------------------------

Google, 5G, General Motors, InSight | Kurz informiert vom 27.11.2018 - Duration: 2:16.

For more infomation >> Google, 5G, General Motors, InSight | Kurz informiert vom 27.11.2018 - Duration: 2:16.

-------------------------------------------

How To Fix All Error Code Of Google Play Store 2018 - Duration: 4:39.

please subscribe our Channel and hit the bell icon to get update regularly in

this video I will show you three ways to fix all error code of Google Play Store

using android devices let's follow all the instruction of the

video method number one first of all go to settings

tap on applications or apps application manager or app manager swipe left until

you find the all tab scroll down and find out Google Play services tap on it

clear the cache and clear data from here

move back and open google playstore

clear the cache and clear data from here

move back and open google service framework once again clear the cache and

clear data

now you need to restart or reboot your device after the restart open the Play

Store I hope your problem will be gone method number 2 go to settings

tap on applications or apps application manager or app manager swipe left until

you find the all tab scroll down and find out download manager tap on it

clear the cache and clear data from here

disable it and enable again now you need to restart or reboot your device method

number 3 go to settings scroll down and find out the accounts or users tap on

Google then you need to remove your Google account from here after that move

back to the home screen and open Google Play Store

type your email and password

that's it this is how you can get rid of all kind of error problem on the Google

Play Store if you found this video helpful then please consider a

subscription to this channel for the more helpful tutorial thanks for

watching

For more infomation >> How To Fix All Error Code Of Google Play Store 2018 - Duration: 4:39.

-------------------------------------------

How-to make some me time with the Google Assistant - Duration: 1:01.

For more infomation >> How-to make some me time with the Google Assistant - Duration: 1:01.

-------------------------------------------

How-to water your plants while on vacation with the Google Assistant - Duration: 0:49.

For more infomation >> How-to water your plants while on vacation with the Google Assistant - Duration: 0:49.

-------------------------------------------

Google Pixel Slate Review: half-baked - Duration: 8:26.

- I don't even know where to start with this thing.

This is the new Pixel Slate,

it's not quite the first Chrome OS tablet ever

but it is the first one that signals Google

is really trying to make Chrome OS

its big screen computing platform of the future.

It's a tablet that runs

the full desktop Chrome web browser, web apps,

and Android apps.

It can cost as little as $600 bucks

but the one that I'm testing right here costs a thousand

plus $200 bucks for this keyboard right here.

This thing is weird.

It's somewhere between a tablet and laptop

and it's not great at either.

It feels like an experiment in the future of computing

but not the actual future.

So, in a lot of ways I do kind of love it but sometimes,

I really hate it.

Let's just get into the hardware.

The Pixel Slate has a 12.3 inch, 3,000 by 2,000 screen

that Google calls a molecular display

but it pretty much just looks like any other LCD to me.

It's good.

It has some fairly sizable bezels,

partly because there are two front-facing speakers

that sound great on the front of it.

It is blue and it picks up fingerprints really easily

but overall, it's pretty nice in terms of quality.

You can login with your fingerprint

right there on the power button.

There are a couple of cameras

that do camera things pretty well.

There's no headphone jack and there are two USBC ports

and I'll get to those USBC ports in a minute,

don't you fret.

Anyway, as tablets go, it's big but it's still manageable.

It's sort of like that 12.9 inch iPad Pro

but unlike that iPad Pro, this has an Intel chip inside it

and that's where things start to get weird.

Google decided to offer four different processor options

and three different RAM options

in five different price points,

so picking out a Pixel Slate is complicated.

You can spend as little as $599,

but it won't do much more than open up a few tabs

and run the Netflix app.

Or you can can kid it out with the max specs

and a keyboard and pen and spend $2,000 dollars.

I think the only one really worth considering

is the Core i5 model that I'm using right here

but I think that because I know how Chrome OS works

and I know that I want to do more

than just use it as a basic tablet.

And that's the thing,

you need to know a lot about what you want out of Chrome OS

just to figure out which one to buy.

In fact, you need to know a lot about Chrome OS

to get most outta the Pixel Slate

no matter which one you buy.

So, let's talk about Chrome OS and more specifically,

let's talk about how it works on this hybrid Pixel Slate.

When you have the keyboard attached,

it works just like any other Chromebook.

You've got a mouse and resizable windows,

you can open up Chrome tabs and Chrome windows,

and web apps and Android apps,

and move them around, the whole works.

It's all really familiar right on down to Android apps,

working but still feeling just a little bit different

than the rest of the OS.

I gotta say though, I don't love this Folio keyboard much.

It's not the rounded keys, they're fine,

they're quiet and they're backlit, and it's pretty nice.

And it's great that you can use it in almost any angle

thanks to this really neat magnet trick

that puts it up at just the right spot.

But the keyboard deck is connected by this floppy flap

and it flexes so much

that you can actually click the trackpad

by accidentally resting your palms on it

when it's on your lap, just like it flexes.

No good.

Brydge makes a Bluetooth keyboard

specifically for the Pixel Slate that's way better

and it's $40 dollars cheaper.

Anyway, when you detach the keyboard

or when you flip it under like this,

it goes into tablet mode.

All your windows go full-screen,

but you can do some split-screen

by dragging down from the top and then over to the right.

And there are some neat touches here,

I really love that if you want,

you can have this little thumb-swipe keyboard

over on the right

instead of having the full-screen keyboard

taking up half the screen.

It's kinda neat.

But the thing is, in tablet mode,

the animation feels really kinda janky,

it's inelegant and it's pretty stuttery.

And performance overall is a mixed bag,

it's not bad most of the time,

I can have like 20 tabs

and a few apps going at the same time.

So, that's good but sometimes I get really bad lag

where I feel like I shouldn't.

So, for example in the Google Keep app,

sometimes I pen with it and it's totally fine

other times it lags really bad.

And other times, things are just kind of unstable.

There are bugs.

The first review unit that Google sent me,

straight up crashed into a boot loop

and it had to be replaced.

The second one, luckily, hasn't had that issue

but I've still had problems with Bluetooth disconnecting

and since there's no headphone jack,

that's kinda just a killer.

Now let's say you trust Google to fix all those bugs,

there is a new version of Chrome OS out

every six weeks after all.

That brings us to the next question,

really the most important question,

can you make this your main computer?

It's the same question we asked about the iPad Pro.

I don't know if you noticed,

but I started this video with the exact same line

that Nilay used in his iPad Pro video

because in a lot of ways,

these devices are trying to do similar things

but from different directions.

- Either you have to completely understand

the limitations of IOS so well

that you can make use of these little hacks

all over the place to get things done,

or you just deal with it and accept the fact

that you have to go back to a real computer

from time to time because it's just easier.

- Yeah, it's the same thing with the Pixel Slate

but for different reasons.

Most people should not make this their main computer

but Chrome OS experts could.

There are a million examples I could cite here,

so I'm just gonna pick one and yeah,

it's finally time to talk about those USBC ports.

So, let's just plug some stuff in.

(quiet upbeat music)

Check, check, check, ha.

Oh no,

ah, woop woop!

So the Pixel Slate isn't restricted like the iPad Pro,

there's a real file browser that sees drives

and if you plug a microphone in, it'll work

and any app can theoretically see whatever you plug in.

It's not really limited by the OS,

instead it's limited by the apps that you can get on it.

So, for example, when I plug in an SD card,

it just pops up the files app.

So far so good.

But the Adobe Lightroom Android app

was designed to work with phones

and doesn't work with Chrome OS' file browser,

so you have to injust the photos into the file app,

then go looking for 'em in Lightroom,

and then go back and delete them in the files app.

Now look, I don't wanna just pick on Adobe here

because this Android app weirdness is kind of all over.

It's nice that you have access

to the full Google Play library of Android apps

but most of the stuff you're really gonna wanna use

instead of web apps

are stuff like video streaming apps and games.

I mean, I don't know,

Spotify just looks silly here for example,

it's just like a tacked on phone app.

The trade off though,

is you get a real desktop-class web browser,

you can't get that on an iPad.

So, I'm able to get more work done on this

than I can on an iPad Pro based on my particular needs.

Just the thing is, I gotta admit,

this is way less fun to use.

So look, I've been hard on this Pixel Slate

but I think it's time to start expecting more

from Chromebooks.

This thing is in the same price range as the iPad Pro,

the Microsoft Surface,

and tons of high-end Windows and Mac laptops.

I honestly think the only people who should buy this

are Chrome OS diehards,

and you know what?

Even for them, I don't think this makes sense.

Last years Pixelbook is still right there

and it's getting discounted all the time.

Sure, it's last years processor

and you can't attach the keyboard,

but otherwise, it's basically the same thing

and it weighs a quarter pound less than this tablet

with the keyboard attached.

I still love my Pixelbook and I'm sticking with it.

Now, the Pixel Slate has a lot going for it

but I think it's just too experimental.

The bummer of it all is I really do like

what Google is trying to do here,

I just wish it was less trying and more doing.

Hey, thanks so much for watching

and let me know in the comments, what would it take for you

to consider a full Chrome OS tablet?

I'm really curious and you know?

I'm obsessed with these new kinds of computers

and I have a video that's a good introduction

to what I think about 'em

it's the very first processor episode

where I try to answer the question,

what's a computer?

For more infomation >> Google Pixel Slate Review: half-baked - Duration: 8:26.

-------------------------------------------

How-to get this party started with the Google Assistant - Duration: 1:00.

For more infomation >> How-to get this party started with the Google Assistant - Duration: 1:00.

-------------------------------------------

How-to try this at home with the Google Assistant - Duration: 1:00.

For more infomation >> How-to try this at home with the Google Assistant - Duration: 1:00.

-------------------------------------------

How-to take the perfect selfie with the Google Assistant - Duration: 0:54.

For more infomation >> How-to take the perfect selfie with the Google Assistant - Duration: 0:54.

-------------------------------------------

Michael Sheridan, Sam Sabori, and James McLaughlin: "Intelligentsia Coffee" | Talks at Google - Duration: 59:07.

For more infomation >> Michael Sheridan, Sam Sabori, and James McLaughlin: "Intelligentsia Coffee" | Talks at Google - Duration: 59:07.

-------------------------------------------

قصة نسرين و مشروع "إعرفي حقوقك" || مهارات من Google - Duration: 2:23.

Riyadh, Saudi Arabia

Living in Riyadh has a lot of advantages.

Families are close to each other.

You feel there is safety and peace.

There is love between people.

It also has, I wouldn't say disadvantages, but some challenges. 

Law here is complex.

It's a mixture of law, religion, traditions and customs.

I've noticed that many women don't know their rights.

When I go to social events women know I'm a lawyer and ask me a lot of questions.

I felt I needed to do something to make people more aware.

The app started with an idea and I was a little afraid because I didn't have experience with technology.

But I pushed myself forward and said to myself, I believe in this idea.

Know Your Rights is an app that teaches women about their legal rights and how to be more independent.

Know Your Rights is an app that teaches women about their legal rights and how to be more independent.

I made it clear, simple and easy to read.

One of the icons is called Free Legal Advice.

It's a free consultation with me where I reply back within 12 hours.

I helped more than 5,000 women.

When women understand their rights, they can take actions for their own benefit.

The country is changing.

Women are moving forward.

Throughout the Arab world, women are using technology to realize their dreams and improve the lives of others.

Thanks to Nasreen, thousands of women have a better understanding of their rights.

Learn free digital skills at g.co/Maharat

For more infomation >> قصة نسرين و مشروع "إعرفي حقوقك" || مهارات من Google - Duration: 2:23.

-------------------------------------------

Behind the scenes of the Google Assistant series YouTubers say, "Hey Google" - Duration: 2:23.

For more infomation >> Behind the scenes of the Google Assistant series YouTubers say, "Hey Google" - Duration: 2:23.

-------------------------------------------

How-to make Google Slime with the Google Assistant - Duration: 0:48.

For more infomation >> How-to make Google Slime with the Google Assistant - Duration: 0:48.

-------------------------------------------

Xiaomi Google Pay Bumper Offer | Xiomi Latest Updates 2018 | Google Pay Latest News 2018 - Duration: 2:24.

Xiaomi Google Pay Bumper Offer

Xiomi Latest Updates 2018

Google Pay Latest News 2018

For more infomation >> Xiaomi Google Pay Bumper Offer | Xiomi Latest Updates 2018 | Google Pay Latest News 2018 - Duration: 2:24.

-------------------------------------------

google par photo upload kaise kare in hindi||google me photo kaise save kare#technichlpukar - Duration: 5:53.

For more infomation >> google par photo upload kaise kare in hindi||google me photo kaise save kare#technichlpukar - Duration: 5:53.

-------------------------------------------

What Does the EU Google Penalty Mean for Us? - Duration: 1:44.

So, Google got a penalty from the European Union (EU)

Do you know what it's about?

The EU said,

that Google is abusing its power

to push down search results

of competitive products

of other price comparison engines like

Idealo, like PriceGrabber, some of these

companies are not around anymore

they shut down, they went bankrupt

years ago

the EU talks about stuff  that has been going on since 2008

or up to 2008

so very much in the past

and finally came to a decision, which is great

but, the question is, will Google continue

with this practice?

just because they have to spend

€2.5 billion, which is a lot of money for you and me

but not a lot of money for Google

I think it's 4 or 5% of the money they have

no, it's 2% of the money they have in the bank right now

they have over $100 billion in the bank

and they just made another $37 billion in profit

in the last quarter

so you think Google are scared?

With that money, rather than paying it to the EU

they can spend a lot of money on lawyers

they can have an army of hundreds of lawyers

just fighting that

You think the EU will spend  the same money fighting back?

I think it is totally possible that Google will just delay

this decision and just continue business as usual

What do you think?

Let me know.

For more infomation >> What Does the EU Google Penalty Mean for Us? - Duration: 1:44.

-------------------------------------------

Google Home Hub - Duration: 2:54.

What is going on guys and welcome back to another video.

Today, we are going to look at the Google Home Hub.

Wa-lah!

Now

it can tell you about the weather

Hey Google

What's the weather?

Right now in Clarksville, it's 25 degrees Fahrenheit and cloudy.

Today, there will be scattered snow showers with a forecasted high of 29 and a low of 21

You can also click to do another one.

In Clarksville tomorrow, it will be mostly sunny with a high of 37 and a low of 30 degrees Fahrenheit

Swipe to go to the hope page

It can also broadcast

What's the message?

Hello

Got it. Broadcasting now.

(From the other room in David's voice) Hello

Now it broadcasted to the Mini

There's more broadcast effects

Hey Google

Broadcast Movie Time

Got it. Broadcasting now.

(On the Mini in the other room and on the Hub onscreen offset from each other) The movie's about to start!

And it can also play YouTube

Hey Google

Play Life of David Google Home Mini on YouTube

Here's what I found on YouTube

Bloop

Hey guys today we are going -- told ya -- to.....

I don't know

It can also adjust lights!

It's also touchscreen

And it has a night clock

Thanks for watching and like the video,

subscribe, hit the bell,

and see you in the next video.

This is a remake of the Mini one but with extra things.

[Clear Day by www.Bensound.com]

Không có nhận xét nào:

Đăng nhận xét