Positioning an ajax popup at position of mouse click with jQuery?

Try this: $('. Tooltip_target'). Click(function(e){ $('.

Tooltip').remove(); $. Ajax({ type: "POST", url: $(this). Attr('href'), data: "", success: function(html){ $(html).

Css({ position: "absolute", top: e. PageY, left: e. PageX }).

AppendTo('#wrapper'); } }); e.preventDefault(); }); The issue was that you were applying your css to the wrapper, and not to the new element you were injecting. The 'append' method returns the element you appended to, not the element you appended. E.g.This.

Append(that) returns this, not that.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions