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

Python Kivy ListView: How to delete selected ListItemButton? -

ruby - How do I merge two hashes into a hash of arrays? -