0
votes
1answer
24 views

retrieving ID via jQuery of clicked list item

Fairly new to jquery. good stuff btw. however. There's something I can't seem to understand. I've got a list that I use as a navbar. Each list item was given an id. I want to get that ID with jQuery. ...
1
vote
3answers
114 views

Use jQuery to get text of target

Trying to get the text of an event's target element from an unordered list <ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul> with code ...
0
votes
1answer
173 views

event.target/srcElement not working 100% in Chrome and Opera

I'm trying to get the target/srcElement of an HTML "area" element for an image map. Here's what I have so far (pardon the data URI): <map name="dpad"> <area id="dpad"shape="rect" alt="" ...
0
votes
2answers
97 views

e.target in VB.net

When using flash, I was able to get to the focus of an event by accessing the event's "target" attribute. so if I remember, it was something similar to. button1.addEventListener(mouse_click, ...
0
votes
1answer
52 views

How to mimic selecting e.target when only a Jquery object is available?

Odd... I'm listening for an event like so: $(document).on('some_event', 'div:jqmData(role="page")', function(e){ console.log( e.target ) }) In my console, I'm getting "hardcoded" HTML, like ...
1
vote
1answer
892 views

actionscript 3 event.target

I have a movie clip named button1 and in this movie clip there is a dynamic text named txt public function mouse_down(event:MouseEvent) { if(event.target==button1) { ...
0
votes
1answer
653 views

“jquery-Target has no method .css()”

I'm trying to get the CSS background-color of a div-element I'm clicking on. Now I've tried this (don't think that it needs more code): ... var onColorClicked = function(color) { var $target ...
0
votes
1answer
504 views

how to use event.target in a jquery dialog to change a DIV's innerHTML when it is double clicked?

**UPDATE** Basically what I'm asking is just this - can someone please explain to me how to use event.target? I need to know what DOM element triggered an event and "do something" to it within that ...
0
votes
0answers
102 views

Wpf : A Common Method for every control's event

What I want to do is Write a Method in WPF and say that the Target of this method is "X event" of "Y Control". Like Resources that you write a Resource Dictionary and say that Target of this resource ...
0
votes
1answer
171 views

How do you pass the target element as an argument to an inline event handler?

Whew! First off, my apologies for the title, I don't speak English often. My question is, using an inline event registration, how can I pass the target element as an argument? Like this: <element ...
32
votes
4answers
10k views

Difference between e.target and e.currentTarget

I don't understand the difference, they both seem the same but I guess they are not. Any examples of when to use one or the other would be appreciated.
1
vote
3answers
748 views

jQuery ul event target - can i find the li that actually is event target?

$("#slider ul").hover(function(){ //do something }); Is there a way to find out which child (li) was actually hovered on to make this function work? This is a long function that when originally ...
0
votes
1answer
172 views

How to get a reference to current DropTarget, upon drop failure with YUI 2.8.1 DragDrop?

I'm using the DragDrop component - its basically the 'grouped drop objects' example - but I cannot for the life of me obtain a reference to the DropTarget object at the time I dropped my drag ...
0
votes
2answers
2k views

Target on click

Look this code: <div> <a href = "#"><span>Click me MAN !</span></a> </div> <script type = "text/javascript"> window.onload = function () { ...
0
votes
1answer
1k views

iPhone/iPad touch event to trigger different div

Seems like an easy solution but I can't wrap my head around it. I have four divs like the one below <div ontouchstart="touchStart(event)" ontouchmove="touchMove (event)" ontouchend="touchEnd ...
1
vote
1answer
1k views

Using JQuery to get text of a div that's a child of a header to replace a different header

I'm trying to get the text contents of a .div('.child#') child of my event.target('h6.class'), and replace my other headers('h1.replacHeader#') using this script below... ...
0
votes
1answer
357 views

event.target doesn't work

I've wrote some jquery code with some draggable elements and one droparea. Unfortunately my droparea can't make a difference between various object. Here's my code. <script ...
1
vote
2answers
3k views

jquery target link click event

i create some links on the fly ... $('input[name="iplus"]').click(function() { $(ol).append("<a href='#' title='delposition' class='beschr-"+($("#billsumary ...
1
vote
2answers
60 views

How to get the right target when submitting a form in jQuery?

$('#form').submit(function(event) { }); When user submits the form by click <input type="submit" />,it should be <input type="submit" />, when user submits the form by pressing Enter ...