html - Specify dimensions for canvas element in jQuery -


see below code. how specify width , height within these lines?

specifying width , height using css not work.

wrapper.append(             $('<canvas />', { class: 'canvasclass', id: 'celement' })         ); 

since canvas accepts width , height attribute

try use,

wrapper.append(   $('<canvas />', { class: 'canvasclass', id: 'celement' ,width:200, height:200 }) ); 

Comments

Popular posts from this blog

c++ - Do gcc's __float128 floating point numbers take the current rounding mode into account? -

java - the value of local variable is not used -