Hi Rouslan,<br><br><div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">I checked out your branch and it looks good to me (for whatever it's<br>

worth). The only few things that I noticed that might need improvement<br>
are:<br>
<br>
* `form_name` in checkIndexName() is misleading as a variable name,<br>
since it will contain the ID of an element (maybe form_id would be<br>
better).<br>
<br>
* in checkIndexName() you defined:<br>
  [code] var the_idx_name = $("#input_index_name"); [/code]<br>
  but then you use several times $("#input_index_name") instead of<br>
  the cached `the_idx_name` variable (which BTW should be<br>
  `$the_idx_name` because it's a jQuery object and not an<br>
  arbitrary JS variable).<br>
<br>
* You copied an pasted the PHPDOC header from the old version of the<br>
checkIndexName() function, which did not take any arguments, so you are<br>
missing `@param` for the function input.<br>
<br>
* [code] the_idx_name.attr("disabled") [/code] will never be undefined<br>
(it's a jQuery object now). Those two times that you are comparing it<br>
against 'undefined' are pointless, so you can just remove those 'if'<br>
statements.<br>
<br>
* missing semicolon after 'false' in this code snippet from<br>
functions.js:<br>
[code]<br>
    if ($("#"+form_name).length == 0) {<br>
        return false<br>
    }<br>
[/code]<br>
<br></blockquote><div><br></div><div>I fixed those bugs and pushed to the repo. </div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Hope this helps.<br>
<br></blockquote><div>Yes. Those are really helpful for me and thanks for the guidance you gave.  </div><div><br></div><div>Regards,</div><div>Thilanka. </div></div><br>-- <br><div><span style="border-collapse:collapse;font-family:arial, sans-serif;font-size:13px"><div style="text-align:left">
L G Thilanka Kaushalya     <br>Computer Science & Engineering,    <br><div style="color:rgb(80, 0, 80)">University of Moratuwa,<br>Sri Lanka<span></span><br>                          <br></div></div>Connect with me at,<br>
      Gmail        : <a href="mailto:lgtkaushalya@gmail.com" style="color:rgb(0, 0, 204)" target="_blank">lgtkaushalya@gmail.com</a><br>      Twitter       : @thilanka_k<br>      Facebook  : Thilanka Kaushalya<br>      Yahoo       : <a href="mailto:lgtkaushalya@yahoo.com" style="color:rgb(0, 0, 204)" target="_blank">lgtkaushalya@yahoo.com</a></span></div>
<div>      Blog          : <a href="http://coders-view.blogspot.com/" target="_blank">http://coders-view.blogspot.com/</a></div><br><br>
</div>