Vasiliy Selivanov

  • RSS

Microsoft’s plans for post-Windows OS revealed

Posted on Wednesday, July 30th, 2008

July 29, 2008 — Microsoft is incubating a componentized non-Windows operating system known as Midori, which is being architected from the ground up to tackle challenges that Redmond has determined cannot be met by simply evolving its existing technology. SD Times has viewed internal Microsoft documents that outline Midori’s proposed design, which is Internet-centric and predicated on [...]

continue reading

Windows vista source :)

Posted on Tuesday, April 8th, 2008

from: http://habrahabr.ru/   Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers Tweet about it Subscribe to the comments on this post

continue reading

different shoes-strings :)

Posted on Tuesday, April 1st, 2008

Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers Tweet about it Subscribe to the comments on this post

continue reading

Multiple File Upload plugin for jQuery and Cancel button

Posted on Thursday, November 20th, 2008

QuocKien here ask me to help him with Multiple File Upload plugin and cancel button

This the most easy way I think

it’s this simple js code (cancel button will work for second multi input file)

1
2
3
4
5
6
7
8
9
10
$(document).ready(function(){
        $(‘.multi).MultiFile();
        $(‘.multi2).MultiFile();
       
         $("#cancel_but").click(function() {
            $(".multi2").parent().find(‘span a’).each(function() {
                $(this).click();
            });
        })
});

where is .multi2 – it’s selector of your multi file input
simple html

1
2
3
<input type="file" class="multi" />
<input type="file" class="multi2" />
<input type="button" value="cancel" id="cancel_but" />

 

I hope this help

Posted in: JavaScript, jQuery.

  • http://www.qsoftvietnam.com QuocKien

    Hi,

    Thanks millions for your help. It works great and very surprised that the code is short. Thanks again.

    Cheers.
    Kien