einsiedler: Breite eines Div-Bereichs mit JavaScript ODER PHP ändern

Beitrag lesen

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>BLABLABLABLUPP</title>
<style type="text/css">
    #fotobox {
                display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: flex;
				
                -webkit-align-items: center;
		-moz-align-items: center;
                -ms-flex-align-items: center;
                align-items: center;

                -webkit-justify-content: center;
		-moz-justify-content: center;
                -ms-flex-justify-content: center;
                justify-content: center;
				
                background-color: #ffffff;
                width: <<< DER ZU VERÄNDERNDE WERT -- VARIABLE variablebreite >>> vw;
		height: auto;
		border: 1px dashed grey;
	}
</style>
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
    $(".variablebreite").click(function(){
        var newWidth = $(".variablewidth").val();
        $(".box").width(newWidth);
    });
});
</script>
</head> 
<body>
    
    	<div id = "fotobox" class = "variablebreite">

		img ++++++++

	</div>

</body>
</html> 

Ist das im ansatz korrekt????  Oder wie macht man das richtig!

Wäre es möglich soetwas auch in php zu schreiben????

Denn was ist, wenn scripte gesperrt werden????


Grüsse dersiedelnde