I make an ajax call and I receive a string back from the server (this could also be another string and chain):
thisitem.parent().parent().hide()
Now I want to excecute that jquery chain. I believe eval() is the answer, but I understand that that's dangerous?
So what's the alternative? Or is eval() not dangerous for this purpose?