How can I convert any .htc file into .js and use the resulting JavaScript?

For example, this is a .htc file: http://curved-corner.googlecode.com/files/border-radius.htc. I want to convert it into .js.

I want to convert it because the CMS I'm working with will not allow me to attach the .htc file. I think it's because of a mime type issue.

link|improve this question

64% accept rate
Possible duplicate stackoverflow.com/questions/1617667/… – Garett Jul 2 '10 at 1:58
1  
@Garett - in that question no one replied about how to convert. and title was also different so i asked about only .htc to .js convert separately in this new question. – Jitendra Vyas Jul 2 '10 at 2:01
@Reigel - i added reason in question. – Jitendra Vyas Jul 2 '10 at 2:08
feedback

2 Answers

up vote 1 down vote accepted

It is not possible to convert any .htc file to an "equivalent" .js file. That is, it's not possible automatically, in general. However for the specific file you've posted, you could convert it using jQuery's live event.

But anyway, there's plenty of Javascript-only libraries that do the "border-radius" thing, why do you need to specific convert this one? A quick google search turns up dozens.

link|improve this answer
Thanks for reply . ok then this conversion then i will go for other solution – Jitendra Vyas Jul 2 '10 at 2:18
it's not possible so i selected your answer. – Jitendra Vyas Jul 3 '10 at 10:03
feedback

You might find some interesting information regarding conversion of HTC to JavaScript objects in this blog: http://ehudpardo.blogspot.com/2011/09/part-1-converting-htc-behaviors-to.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.