$("#divItemName input:[type='text']").val(itemName);
i have the above jQuery line of code. It works properly in jQuery 1.7.2 but in jquery-2.1.3, it throws the error below.
Error: Syntax error, unrecognized expression: #divItemName input:[type='text']
What is the correct syntax for this in jquery-2.1.3?
input[type='text']