Ok Ernesto, actually I already have FFmpeg installed in my server, I just dont know how to use it to show the files (.avi, .wvm, .mov, .asf, etc) in flv...
James, The problem is that JavaScript is typeless, so you don't know how a variable is represented internally, unless you force it. This can be done with this...
I have used the 'sortable' script twice. Everything works good. I can help if you provide a link or the source code.... are you generating your sortable table...
hi how will i able to know that "Enter" key is pressed or not ? avidly waiting 4 reply thanks in advance... ... All-new Yahoo! Mail - Fire up a more powerful...
... Hmm, it isn't true... The language has a variant internal format, but you can't say it's typeless at all, it just has a great coercion hability that is...
... Jonas is spot on. More specific to this case, anything you feed to a regexp is going to be treated as a string. -- This message has not been scanned for...
Use the keyCode of the onkeypress event, which has to be 27 if(event.keyCode==27).... ... -- Ernesto [Non-text portions of this message have been removed]...
Hi , I am having a page where leave is applied. - In this page 1 new rows is created dynamically everytime the 'Add row' button is pressed - Each row has a...
... 27? Also I don't know if using just the keyCode is enough, now Firefox supports both keyCode and which, but they have quite different behaviours. I still...
I use JavaScript on my site for data validation. If a user turns off JavaScript data verification is also turned off. I use the <noscript></noscript> in the...
Ups... 27 is for [Esc] 13 is for enter... Try this function (not tested): function isEnterKey(e){ var keynum = window.event ? e.keyCode : e.which return...
... If the user doesn't have JavaScript, don't tell him anything, let him free to do what he want, besides the fact that there are browsers without JavaScript...
Are you saying that you are using JavaScript to validate data before using it on your server (e.g. to put it in a database)? Don't. There are always ways to...
... This is valid code, thus these days it became a kind of deprecated feature. ... If both "keyCode" and "which" aren't valid, it will return 0 :) ... My...
Hi Guys, I have a jsp page which has many includes.. I need a way in such a way that i could set the tab index of all the form elements dynamically. Altogether...
Using Javascript under MSIE on Windows XP Home: I want to list the .xml files that the user has created on his/her disk so they can enter the filenames and...
For security reasons, pure JavaScript does not allow this. Microsoft's FileSystemObject ties you down to a single OS family - MS Windows - and a single browser...
Just a hunch: try it in 8.3 style (c:\DOCUME~1\OWNER\MYDOCU~1\WEBSIT~1) Alternately, try either enclosing the path in quotes, or setting a variable to the...
I also use php but my problem is when JavaScript is disabled. Can I test to see if JavaScript has been disabled with php code? I tried <noscript> <meta...
... The backslash must be escaped. Maybe it's too basic, but as you didn't put code (I won't read it if you put anyway ^^), that's the only hint I can give...
Actually I'm performing data checking. Making sure a user fills in all required fields. My problem is this. When JavaScript is enabled and a user does not...