Jquery 1.12.4 selector for href
I was using with jquery version 1.8.2
var hasContainerTab = $("#tabs").find("a[href='#container'").length == 1;
I upgraded jquery to 1.12.4
Now that statement is failing saying
unrecognized expression: a[href='#container'
Can any one tell me how to re-write the statement as per the new version?