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
0
votes
0 answers

Delete one targeted child and create targeted undo for that container functions in jquery

I'm having trouble wrapping my head around this logic: I am succeeding in deleteRecipe to remove it's parents, but it is also supposed to fade in the undo button on top of it, that when clicked is supposed to fadeIn our sibling deleted…
Dan With The Plan
  • 135
  • 2
  • 2
  • 12
0
votes
1 answer

Having trouble targeting a single input among multiple elements with the same class name (jQuery)

I have a page with a list of li elements, each called .section. The page starts with just one section, but the user can add more with a click. Each section has a dropdown called .wip-location and three input fields called .section-number,…
Nathan R
  • 840
  • 5
  • 13
  • 32
0
votes
1 answer

Getting facebook ads targeting country through api

I have a requirement where I want to extract the location targeting information for ads(country,region etc). Is it possible to get this information for each campaign? I read about the Facebook Marketing Insights…
Subhash Deshmukh
  • 350
  • 3
  • 18
0
votes
1 answer

CSS targeting Images that are linked and best ways to center multiple images on one line

I am new to CSS and html and I was wondering if you could help me. I am trying to make a page where people can go to my website and shop on any platform they want. I have managed to create the page in html but I couldn't get the four image (square)…
0
votes
1 answer

How do I enable iframes in code

I have the code for iframes but for some reason, it won't work. It will display either an error message or an empty blank, white box. I am not sure if I need to enable the code that the iframe is targeting or if there is something wrong with the…
0
votes
1 answer

Import Data from Text File into Master File (changing target directories)- Excel

I know that this post is going to seem very similar to many other posts to those who understand it. I have learned C++ and C#, both only well enough to do minor work, and I just cannot understand VBA well enough to make this macro happen. I have…
0
votes
1 answer

How to glob match minion in salt master for number containing more than one digit?

I just found out that I could not target minion using glob matching if the number to be matched is composed of more than one digit : salt 'mail[1-4]*' test.ping OK salt 'mail[11-14]*' test.ping Does NOT I know I could use regxp switch for that,…
Pier
  • 618
  • 2
  • 8
  • 23
0
votes
2 answers

Event targeting in Vanilla JS vs. in jQuery

I'm doing event targeting experiment and compare its execution in vanilla JS and jQuery. I was surprised that the result was different; it was successful in vanilla JS but not in jQuery. If I'm not mistaken, the code for event targeting in jQuery is…
jst16
  • 84
  • 9
0
votes
3 answers

How to target a specific user

I am currently in the process of making my own discord bot using C# and the Discord.NET API, but as the documentation is limited and i've only been coding in C# for a limited time, I've encountered an issue. I've made a command to shut down the bot…
HallowedFlux
  • 100
  • 2
  • 10
0
votes
2 answers

Target a specific div when hovering over another

I am trying to hover over one div and make it not only trigger the hoverstate for the div I am hovering on but also a div elsewhere on the page. How can I do this. Using JavaScript or JQuery would be fine. Here is what my code looks like:
Lazerbrains
  • 149
  • 1
  • 3
  • 13
0
votes
0 answers

Document personalization in Pimcore?

Document personalization doesn't work in pimcore. I click the button "Edit Content for Target Groups", choose the Target group, Overwrite the content, Save and Publish page, reload page and the orginal content is disappear. It looks like all content…
Makso
  • 78
  • 8
0
votes
1 answer

Target newsfeeds of individual Facebook Page followers?

I have a site where users create posts and customize a feed of content that they're interested in - something like a Twitter list. I would like to be able to push that content (and only that content) to them inside Facebook for possible inclusion in…
slowernet
  • 43
  • 1
  • 1
  • 7
0
votes
1 answer

rugarch and variance targeting in R

I am using the library rugarch and I try to find "manually" the same outputs than the library to check that I understand everything correctly. I would like my variance intercept (omega) to be equal to the unconditional variance of my dataset.…
Petreius
  • 35
  • 7
0
votes
2 answers

How to target a Xamarin PCL application for multiple customers?

I have a Xamarin PCL solution in Visual Studio Community 2015. I'm interested in deploying the same application for Android and iOS for two different customers. The only thing that it will change would be the splash image and the application icon. I…