A feature starts with the selector [name = "value"] is not working Here 'editMe_' is a string and 'id' is a variable. Thanks in advance.
$ ('[id = "editMe_" +' id ']'). CSS ("Display", "None");
You have not handled the quote correctly: use
$ ('[Id ^ =' editMe_ '+ id +'] '). CSS ("display", "none");
also .
instead of .css ( You can use
Comments
Post a Comment