I have two or three div elements with same id. Here am setting width dynamically using the following javascript:
function SetWidthRPanelAssessments() {
for (var i = 0; i < $("div:visible[id*='s1']").length; i++) {
if (document.getElementById("s1").offsetWidth < 250) {
var w = document.getElementById("s1");
w.style.width = 250;
}
}
}
The problem is, it is setting width only for first div and rest of the divs its not setting the value 250. I verified using the alert() but its showing value 250 for all the divs. But not rendering in the screen. How to fix this issue?
This issue is coming in all the browsers.