It is so annoying the TinyMCE editor image plugin saving the height and width of the image. You can turn it off in the settings. tinymce.init({ selector: “textarea”, // change this value according to your HTML plugins: “image”, menubar: “insert”, toolbar: “image”, image_dimensions: false }); There are other settings available for the image plugin please… Continue reading TinyMCE remove height & width from image
Tag: javascript
Redesigned my blog template
It has been really long time since I worked on my blog to improve the look and feel. I keep doing this once in while since I usually get annoyed at look at the blog with same template. This time I was fascinated with the template from YG Desire. I downloaded the theme and made… Continue reading Redesigned my blog template
Javascript Library jquery
For past few days I was playing around with this javascript library jquery which is really light and powerful. This was told by Nishanth from our company. He is a great fan of this tool and even I am one now. http://jquery.com/ Some of examples to use this library $(“p.surprise”).addClass(“ohmy”).show(“slow”); The selectors are really powerful… Continue reading Javascript Library jquery