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
11
votes
2 answers

How to include space in a hyperlink target using reStructuredText?

I can do this: For more info, see Target_. .. _Target: http://google.com This correctly generates documentation that links Target to "http://google.com". I want to replace Target with text that has spaces: For more info, see Text With Space_. ..…
mpenkov
  • 21,621
  • 10
  • 84
  • 126
8
votes
1 answer

Send keywords and targeting info to AdMob for better ads

On admob, when I click on Monetize > AdMob Network report and then select "Targeting Type" in the drop-down selection (at the bottom left of the page), I see five lines: - (Unmatched ad requests) - (unknown) - Contextual - Interest-based -…
Gilbou
  • 5,244
  • 6
  • 24
  • 27
7
votes
3 answers

How do I target the first link inside a div with CSS?

For example I have this: I want to target the first link with CSS.
Danny Cooper
  • 355
  • 1
  • 8
  • 25
6
votes
4 answers

Async Await targeting 4.0 deployment requirements

Microsoft has updated the async/await targeting for .net 4.0 and now suggests using the Microsoft.Bcl.Async library available on nuget. In the release notes, it states that .net 4 with KB 2468871 is required. Is KB2468871 a build requirement or a…
Dan
  • 854
  • 8
  • 21
5
votes
3 answers

Any easy way to target an element with onload within that onload?

Say you wanted to make an element blue with JS, like this:

Boy, I sure do wish I was blue

The above line doesn't work, as this targets the window object in that context. You could use ID's, but I'd assume…
Bunny
  • 192
  • 1
  • 1
  • 14
5
votes
4 answers

Can you gate and target a page post through the facebook graph api?

Enabling post privacy gating in the Page's privacy settings allows creating of posts with separate Gating and Targeting. Enable: Post: Now I have been able to get news feed targeting to work through the api by specifying the param feed_targeting…
5
votes
1 answer

is there an endpoint we can query using a page access token and sending the feed targeting parameters to get estimated reach?

Is there an endpoint we can query using a page access token and sending the feed targeting parameters to get estimated reach? There isn't anything documented about how to get to this information, although it is available to adgroups:…
4
votes
3 answers

How to target div at the end of the row?

I am trying to insert a box strip in between rows of divs, how can I target the end of each row's div? Here's a JSFiddle of the divs: http://jsfiddle.net/5Sn94 Here's the code:
Stephen Jenkins
  • 1,776
  • 3
  • 24
  • 39
3
votes
2 answers

CSS targeting specific images

I am looking for a way to target a specific image with CSS, if this is even possible. I am running a CMS where the users can upload images and put them on their pages. I would like a way to target images with specific dimensions. So the question is,…
Nils Munch
  • 8,805
  • 11
  • 51
  • 103
3
votes
1 answer

AdRequest.Builder.addKeyword() is not working

I have some problem about adMob for targeting purposes. I've read the google adMob reference guide for AdRequest. They recommended to use addKeyword for targeting purposes. But I couldn't see the targeting ads. I can see only Not targeting…
J. J
  • 31
  • 2
3
votes
1 answer

How to target several versions of Windows

I need to write a simple command line program that will work on Windows XP (most machines will have SP3, but some may not) all the way up to Windows 7. I'd like to be able to compile it into a single portable file that does not require me to install…
Luis Naranjo
  • 649
  • 7
  • 18
3
votes
2 answers

Python Targeting System

I am working on a project where I need to program a Raspberry Pi to grab an image from a webcam, search that image for a box and identify what box it is by it's size ratio. The boxes will be a unique color to the rest of the environment. It would…
3
votes
3 answers

jQuery - targeting Sibilings , Parents , Descendents and other family animals

I had a small markup test for toggling a div . A (working) mockup can be found here : http://jsfiddle.net/obmerk99/d78aF/1/ The problem is , that I need the Hide / Show link to be placed in ANOTHER div , like here…
Obmerk Kronen
  • 15,619
  • 16
  • 66
  • 105
3
votes
3 answers

iPhone: is it worth developing an application to support the OS 2.2 anymore?

The new OS (3.0+) adds more features which speed up the development (like working with the lists etc). On the other hand there could be (potentially) a lot of users somewhere still running OS 2.2. Is there any place to look for statistics? Could…
Ilya Kochetov
  • 17,988
  • 6
  • 44
  • 60
3
votes
2 answers

Targeting anchor href in last TD of first TR in TBODY

I want to use jQuery to redirect a person arriving at this page to the link contained in the anchor of the last TD of the first TR in TBODY (not THEAD): …
Zade
  • 692
  • 8
  • 28
1
2 3
11 12
Date