getAutosize IE tests

by abhishekdev

HTML

<script src="https://raw2.github.com/abhishekdev/jquery-getAutosize/master/dist/jquery.ad-getautosize.min.js"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<div id="forgotPasswordDiv">
    <div class="header" id="forgotPasswordDiv_dataHeader"></div>
    <div class="divPopUpContentBody" id="forgotPasswordDiv_contentBody">
        <div class="fielddesc" id="enter_email_descriptiontext_key">Enter your email address exactly as it is specified in the system. If you need assistance, please contact your System Administrator.</div>
        <table cellspacing="0" cellpadding="0" class="formLayoutLeft">
            <tbody>
                <tr class="formRow" id="userLogin">
                    <td class="formLabel">
                        <label for="userLoginField" id="userLoginLabel">
<span>Please enter your e-mail address:
</span>

                        </label>
                    </td>
                    <td class="formValue">
                        <div class="formValueWrapper">
                            <input type="text" autocomplete="off" size="25" style="color:#000000" class="text" value="" id="userLoginField" name="userLogin" />
                        </div>
                    </td>
                </tr>
            </tbody>
        </table>
        <input type="hidden" value="user" id="step" name="step" />
        <input type="hidden" value="0" id="answerCount" name="answerCount" />
    </div>
    <div class="buttonRow" id="forgotPasswordDiv_buttonRow"></div>
</div>

JavaScript

function init() {
    var dialog = $("#forgotPasswordDiv").dialog({
        autoOpen: true
    });
    
    dialog.dialog("option","width","auto");
    dialog.dialog("option","height","auto");
}

$(init);