Questions tagged [targeting]

"Targeting" is to make a thing or group a target, to select it or them to be acted upon. In a context of programming, is to select or wish to select an object or entity and to execute some code that has effect on the 'target'.

"Targeting" is to make a thing or group a target, to select it or them to be acted upon. In a context of programming, it is the action of selecting an object or entity with one part of the code and do something specific to the 'target'.

In most programming languages we define targets with an 'id' and give it a unique identifier; setting variables that hold a target object, etc. This allows us to then reference it at ease, which allows us to create solutions much more easily.

For example, in CSS we target elements with specific classes or id's and set rules for those to abide by:

.class #id {
    color: #FFF;
}
170 questions
1
vote
0 answers

why is scroll-margin-top behavior different on edge chromium?

at the moment i had to fix the scroll behavior on different browsers on my WP site.. works fine now for FF, Safari and Chrome. The thing now is, that im not able to target specially the new edge browser (chromium). here the menu with the anchor:
Gio Gmz
  • 31
  • 5
1
vote
3 answers

Jquery targeting / Hover problem

I have two divs, on hover span class=fg grows and changes opacity, span class=bg shrinks, and when you mouseout it returns to the original state. My problem is in two parts: 1: When hovering over the first div, the same action happens in the second.…
Sean
  • 114
  • 1
  • 13
1
vote
1 answer

How to reference another page in project with section ID?

This works fine as long as I don't need a specific section - and this seems to work: name _, except if I repeat name Sphinx throws WARNING: Duplicate explicit target name: "name" and even if it's harmless, it populates the screen…
1
vote
1 answer

Is there a way to retrieve saved audiences from the Linkedin Ads API?

When creating campaigns for LinkedIn Ads you can save a target audience template so that the same audience can easily be used for another campaign again. Is it possible to retrieve those saved audiences and save them to a campaign with the Api as…
1
vote
0 answers

Adding Zip codes for ad set targeting

I am having issue with updating targeting for adsets. As i update targeting using ZIP code against a ad set, it results in deleting of previous zip code and adding this new one zip code against the ad set. I want the previous zip codes to remain…
1
vote
1 answer

Google Optimize Experiment targeting wrong URL

I've setup an experiment on a specific URL in which I send no traffic (same domain name that I use for other landing pages but with different parameter in the URL) I've started the experiment few days ago without sending any traffic And now I see…
1
vote
2 answers

How do I target image in this HTML? It's slider revolution jquery plugin

I want to target image in this html so I can adjust it for mobile devices, because I have problems with this slider. Here is the code:
denisek19
  • 11
  • 2
1
vote
1 answer

How to only target newer iOS devices?

I'm building Metal apps. Some hardware, like the iPad mini 2, is not too powerful, my apps can't run on it, tho it supports iOS 12, so changing my iOS target won't help preventing an install from that device. I want to support A9 or better, maybe…
Heestand XYZ
  • 1,993
  • 3
  • 19
  • 40
1
vote
0 answers

Adwords API for target Ideas is not providing average cpc value and reach for certain keywords

I use TargetingIdeaService generate new keyword ideas based on the following parameters: searchParameters: [{ 'xsi:type': 'RelatedToQuerySearchParameter', queries: [] }, { …
Parvathy H
  • 11
  • 2
1
vote
0 answers

Target Membership in React Native

I am involved to a project which is targeting multiple clients. We have to handle different client needs and so it can happen that a client wants to fully change a page in the application or they would like a different logic behind the screen. And…
sez
  • 11
  • 2
1
vote
1 answer

Trying to write a C# code to make a missile follow the player in Unity

I have been trying this for two days with no success. I cant figure out where I'm missing the point. All the missiles are moving towards the position of the target but not following it. The position remains fixed and all the newly created missiles…
1
vote
3 answers

Can I use a jquery string to target an id?

I'm currently trying to build a menu, and I would like to have a dynamic targeting based on which button I'm pressing. so for instance, my jquery code looks like this jQuery(function($) { $("button").on("click", function() { …
1
vote
1 answer

Static alias to auto generated section URLs with ReST / Sphinx

I have a web application with some "Help" buttons which point to my online documentation. The links to the help sections are hardcoded in the app database. Previously, the documentation was made in HTML and JS, and I could control the URLs to the…
umbe1987
  • 2,894
  • 6
  • 35
  • 63
1
vote
2 answers

Targeting an element

On click, I want to target the individual parent's parent's sibling's child. There will be multiple containers. Therefore when removal is clicked I want the img in that div only to be changed. This is the jquery I currently have - no luck am I…
1
vote
1 answer

Drag 'n Drop Element targeting

so i was programming (with a friend) a Drag 'n Drop system with elements (here buttons) for HTML in plain JS. Then i realised, what if i have multiple element on this page? Answer: All these are being affected. So i said... okay! i just increasingly…
1 2
3
11 12