Is there any equivalent to $(this) by using a string expression? I have tried $('this') but I could not be successful.
Edit:
I would like to reduce the amount of the code for my dom elements. Instead of repeating my codes, I would like to write a custom attribute and putting response to data-response-target-sel selector. However sometimes I need to basically express this selector by using context of "this". I would like to find a good solution for such cases. I can add another custom attribute for context but before going further more I wanted to share my question.
<a class="btn btn-primary" href="#" data-response-target-sel=".modal" >
ajaxSubmit({
url: $this.attr("href"),
type: "GET",
data: {}
},$this.attr("data-response-target-sel"));
function ajaxSubmit(data,resSel) {
$.ajax({
url:data.url,
type:data.type,
data:data.data,
cache:false,
success:function (html, textStatus, jqXHR) {
var $html = $(html);
if(jqXHR.status == 200 || jqXHR.status == 201){
$(resSel).html(html)
}
}
});
}
How can I set "data-response-target-sel" for context using this?
Thanks
$('this')will try to select any HTML elements calledthis, of which I'm assuming there are none. Why are you trying to do this? – David May 14 '12 at 14:17$(this)wraps the current object into a jQuery object. Why do you need to use a string if$(this)works? Anyway, you'd have to check if thethisobject has id - if yes, use that, if not, you'd have to find it in the DOM tree and reference it somehow according to its position... – Imp May 14 '12 at 14:18