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

How can I target a div on my HTML page with Javascript to change the contents of an element?

I've got an interesting question. I'm running Squarespace @ buscadprimero.caminoglobal.org and need to target the top-right button on the navigation (Ingresar, which means login) to bring up a Javascript form provided to me via embed code. The code…
nathanoday
  • 35
  • 7
-1
votes
1 answer

Taregeting google chrome using HTML

I want to targer google chrome , firefox and opera Using HTML i have this code for Internet Explorer waiting for good answer thanks
-1
votes
1 answer

Targeting multiple DBMS using ORMs in the same application

My question is not if that possible but the level of configuration required to do that. To be more clear, I want to connect to two databases that have the same schema but under two different DBMS (Oracle and SqlServer). I want to use in the same…
-1
votes
3 answers

Target specific value of a node with jQuery

OK, I basically have the following scenario with some dynamically generated html:
-2
votes
4 answers

Make the minus/plus sign toggle only on the clicked button...?

How can I make the minus/plus sign toggle only on the clicked button? How can I make it clickable (it's not right now)... JAVASCRIPT $(".dropbtn").append('+'); function ctaDropMenu(e) { …
Jacques Goudreau
  • 511
  • 1
  • 5
  • 10
1 2 3
11
12