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

App_Browsers for specific directories/routes

I have a site which uses the CSS Friendly Adapters for ASP.Net server controls. Half of the site uses GridViews which have inline styling added to them. I do not want to change these controls and need them to work alongside the new pages until they…
Darbio
  • 11,286
  • 12
  • 60
  • 100
1
vote
1 answer

Using Javascript to shift location of divs w/ Up, Down, Left and Right buttons

I'm just getting into jquery and javascript but, I'm slamming my head against a wall trying to figure this one out. I've tried using .css and .animate commands, but I think I'm doing them improperly, or i'm failing to differentiate the variables. In…
1
vote
1 answer

Jquery click event to target anchor not working in Firefox

I have a navigation menu that is targeting anchors that are positioned by the data-position attribute within a page. I'm using this code snippet to make this work, and it works great in Safari and Chrome, but isn't working at all in Firefox. Is…
1
vote
2 answers

Jquery, targeting specific instances of cloned HTML for php search and results

Am a novice with Jquery but I've put together code for a jquery search on select change alongside code for add/remove instance buttons, the idea being that the user selects an entry in a dropdown and the page returns a table containing info in a…
Funk247
  • 330
  • 4
  • 22
1
vote
1 answer

Podspec linting fails on TARGET_OS_IPHONE conditional

I'm trying to create a podspec for a library that has a source file which contains a TARGET_OS_IPHONE conditional. The linting reports errors YapDatabase (1.2.1) - ERROR | [OSX] [xcodebuild] …
zakdances
  • 22,285
  • 32
  • 102
  • 173
1
vote
0 answers

Targeting Browsers in CSS

I'm having a host of problems that I have managed to work around until now. First, different browsers are responding to different media queries even though they are all being displayed on the same screen. I've managed to work around that problem but…
1
vote
2 answers

Finding target in appended elements to invoke click event

I am trying to get the pause button to work in each span separately. Each time the user clicks the "add" button (code not shown), a new set of these elements is appended to the
Chris22
  • 1,973
  • 8
  • 37
  • 55
1
vote
1 answer

How to target interests in ads-api

I'm interested to create an ad which is targeted for "things" that appear in your main like-page at your profile. Some Favorite pages are in organized categories, but some are not - and there's the Like area as well. For instance, three such…
Mark Srulnik
  • 76
  • 1
  • 5
1
vote
0 answers

Page post targeting and gating together

What is the outcome if you use the new newsfeed targeting mechanism for a Page Post along with the old targeting, now called gating, mechanism. I can see three scenarios of how the results of these two mechanisms can overlap: If the targeted group…
wlp1979
  • 43
  • 1
  • 4
1
vote
1 answer

Xcode Target Membership Lost the Plot

Xcode 4.3.3 project with 3 targets, each target has it's own InAppPurchaseManager class. Suddenly out of the blue, target ABC has build errors because it's pointing to target XYZ's InAppPurchaseManager class. The individual InAppPurchaseManager…
RobCroll
  • 2,571
  • 1
  • 26
  • 36
1
vote
1 answer

SharePoint forms authentication (FBA) roles

Can anybody help me... Is it possible to target audiences in SharePoint using FBA roles instead of using SharePoint groups? Or is there an alternative solution available?
Kash
0
votes
1 answer

Facebook geotargeting of a post has misspellings

For Facebook post geotargeting, there is a file that contains the cities: http://developers.facebook.com/attachment/all_cities_final.csv There is also: http://developers.facebook.com/attachment/targeting_ids.json that contains the countries, cities…
0
votes
1 answer

How can I limit the result from the /posts connection on a Page to posts targeted to a specific country or language using the Graph API?

When posting to a Page directly on the site or via the Graph API, you can specify targeting to country , city , region and locale. When loading the /posts connection on the Page, every post is included. How can it be limited to a specific targeting?
0
votes
0 answers

Generate a nonlinear 2D transformation matrix/function from pairs of coordinates for a Cat Turret

Disclaimer for this question: This will probably be a case of the XY problem. I would love to hear suggestions for Y or X I have a BS in CS, but I've forgotten much of my knowledge of linear algebra, so even rediscovering what to google would be…
0
votes
1 answer

C++ stat() function not finding remote file

I'm using Visual Studio and I'm connected to my Linux machine using remote development (https://learn.microsoft.com/en-us/cpp/linux/connect-to-your-remote-linux-computer?view=msvc-170). I'm trying to call the stat() function to find if a file…
Katianie
  • 589
  • 1
  • 9
  • 38