Im trying to change a sibling of a div element and this is the statement i used
$(\'.edit\').click(function(){ this.siblings(\'.innerInfo\').html(\"succe
You're should reference $(this) like:
$('.edit').click(function(){ $(this).siblings('.innerInfo').html("success"); });
Use $(this) instead of this.
$(this)
this