The jQuery selector $top.find("[data-level=\"2\"]")
does not work on an input
, but if you put the data-level
on the parent div, you can use $top.find("div[data-level=\"2\"] input[name=\"rua_status\"]")
Putting that out there so I don’t waste several hours next time this comes up.
Wow. You just saved me HOURS of frustration!
You’re a good man.