I am attempting to calculate the viewport width, and then subtract a value from that then apply the result to the desired container. I’ve found some examples that are close and managed to cobble together the following but it’s not doing any thing at all.
$(document).ready(function() {
var aa = $(window).width();
var bb = $(“#controlWidget”).width();
var cc = (aa – bb) + "px";
document.getElementById(‘thumbList’).style.width = cc;
});
Thanks in advance!
A few things:
Unless you’re using them for something else, the temp variables are not needed.
Also, I have no idea if this is due to whatever editor you’re using, but you’ve inserted invalid characters into your sample code block. For example,
“should be"and–should be-(notice the subtle differences in both). Javascript interpreters bork on those characters as they’re invalid in the given context.Finally, you shouldn’t mix pure Javascript with jQuery, it doesn’t make a whole lot of sense. Rather than applying the width through
document.getElementById, you should simply use jQuery’swidthfunction, which also allows you to set the width.