Aleen

Results 82 comments of Aleen

## Content-Editable Elements under IE10(IE10 下的可编辑元素) In the case when we implementing an editor, we may need to consider such a case which I have met recently. Assume that there...

## Detect the type of data in clipboard under IE(IE 下粘贴板数据类型检查) Recently, I have met a requirement where I need to implement a pop-up notification for suggesting users install upload...

## Two weird scenarios when listening to a property changing under IE(IE 下监听属性改变事件的两种奇怪场景) Today, I have met a horrible thing when using `propertychange` event handler under IE. Some strange things...

### Automatically adjust table under IE8(IE8 下表格宽度自适配) Assume that there is a table with being set as `table-layout: fixed`, which has resized its content by hiding a column. Under IE8,...

## Two global functions definition ways may be different under IE8(IE8 两种全局函数定义会有所不同) As a common sense of coding JavaScript, it is not a wise choice to define functions (or variables)...

## Weird phenomena during loading IE add-ons(加载 IE 插件时出现的奇象) Recently, I have met some weird things when trying to load IE add-ons under IE 8 and 9. Since the IE...

## Notify downloading JSON responses under IE8/IE9 ?(IE8/IE9 下提示下载 JSON 返回请求?) When posting a file to the server, like uploading, we usually use multipart/form-data to construct our requests and wait...

## Unable to select text through a content-editable element under IE?(IE 下无法在可编辑元素内选择文本?) When implementing an editor, which should be compatible through different browsers, especially IEs, you may need to take...

## Some problems about option tag under IE8/IE9(IE8 / 9 下 option 标签的一些问题) 1. Lose comments between option tag: option 标签之间的备注会丢失: ```js // unexpected output => "" console.log($('')[0].outerHTML); ``` 2....

## Naming anonymous function problems under IE8(IE8 下慎重对匿名函数进行命名) ```js const test = s; function s() { console.log('outside'); } const obj = { s: function s() { console.log('inside'); } }; test();...