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
1 answer

VSTO setup.exe insists on NET 4.6.1 When I have targeted to NET 4 Client

I'm running Visual Studio 2017 Community on Windows 10, and have created a VSTO Excel extension. I have admin on the sandboxed windows 10 machine, but only user access on the Windows 7 box. The Windows 7 box runs .Net 4 and I cannot change…
1
vote
1 answer

Updating nested state in objects through an input element in React

I am creating a form that allows orders to be updated. The input fields have to be populated with the current state of each object that I render and I'd like to be able to edit the input field. I have simplified my code to just one input field and…
1
vote
0 answers

Facebook API PHP SDK geo_locations cities not working using radius and distance_unit

I've problems using the geo_location when publishing automated posts on my facebook page. It is possibile to use range in the geo_location? I have this array : Array ( [geo_locations] => Array …
1
vote
1 answer

$eventTarget.is($(this)) not working

I made a sample accordion. If a tab is being clicked, its siblings are supposed to be closing; in other words, only one tab must be opened if the event target is that current tab (the tabs are the
s). What I did in my code is test if the…
jst16
  • 84
  • 9
1
vote
1 answer

Sub-menu does not hide when it is not the click target

I've been struggling for days fixing this simple problem. The sub-menu of one of my navigation menu's tabs is supposed to be closing when other elements are being clicked but it won't close. var query =…
JTrixx16
  • 1,083
  • 9
  • 15
1
vote
1 answer

Problems targeting link in flash to an iframe for firefox

I'll consider myself a newbie, I've made buttons in a flash menu to play animation and go to a url on click, and I've made it so that the url page loads in an iframe. Everything works fine on Safari, but it ends up loading the url page in a new tab…
Vince
  • 11
  • 2
1
vote
0 answers

FBA and audience targeting in sharepoint 2007

I want to use audience targeting feature for webpart with FBA. I tried to add FBA user directly in sharepoint group or added the user to a asp.net role and then added the role to sharepoint group, but both failed. My observation is that all FBA…
intangible02
  • 993
  • 1
  • 9
  • 19
1
vote
0 answers

VBA - Highlight columns 1 - 10 and activate column "J"

FYI: I am using Excel 2013. I do twice-weekly manual sales updating which equates to 10h/week. We must manually enter data from paper to Excel, which involves constantly looking up and down and can be quite tedious and erroneous. I have already…
WillMason
  • 11
  • 3
1
vote
4 answers

Jquery: Targeting dynamically loaded HTML elements

I've been racking by brains trying to figure out why jQuery wasn't responding. But I've figured out why it's because my form below is dynamically created by javascript and not inside DOM. If I use $(this).css("border", "1px solid red"); to target…
Quaking-Mess
  • 505
  • 4
  • 12
  • 23
1
vote
2 answers

Element clicked on from group with same class

I have the following menu
  • One
  • Two
  • Three
  • Four
  • Five
I need to hide only the button that I click on,…
1
vote
1 answer

Change placeholder of input within an iframe

Using Tumult Hype, I built a date range selector, and I'm currently adding the functionality to it... however, Hype likes to put it's HTML snippets into iFrames. I'm having trouble targeting an input field that is in an iframe, so I can populate it…
Livi17
  • 1,620
  • 3
  • 25
  • 43
1
vote
1 answer

Autocomplete method to get me different values

Where I cat to found info about changes the locations to targeting. Ex: English (All) value returned me as 4 different values.
1
vote
2 answers

how do I target with jquery a parent div if a src has an alt?

I have the following div with a img src and and alt:
99 Downward
How do I add a class "Down" to the parent DIV, (right after…
1
vote
0 answers

jQuery - mouseleave/mouseenter doesn't trigger when moving directly between divs; must enter body first

I am working with a few divs with no margins/space between them, and I am having trouble getting the mouseleave/enter events to trigger after the first entry of the mouse. In other words, I want the events to trigger without having to either A) move…
lala7mac
  • 11
  • 1
1
vote
1 answer

Unable to target next div in DOM using jQuery

I am currently having a little trouble using jQuery to locate the next div in the DOM. I suspect it might be due to the
user2265712