Posts by Daniel Neis Araujo • 66 points
4 posts
-
0
votes2
answers469
viewsA: Nodejs or flash solution for streaming live video!
If you need to expose on the internet a service that runs on a machine of your local network, I suggest using something like the https://pagekite.net/ "Pagekite makes local websites or SSH Servers…
-
1
votes1
answer1536
viewsA: How to get started with Webrtc, I’m lost
You can even use Webrtc with the "pure" API, I recommend this tutorial in English: http://www.html5rocks.com/en/tutorials/webrtc/basics/ But I found it easier to use the libraries available on…
-
0
votes4
answers835
viewsA: Load page with Jquery event
I believe your code problem is the event you are passing as parameter. According to the jquery documentation, when you use the "on" method, the event does not have "on" in the name, for example, if…
-
4
votes1
answer1797
viewsA: How to call code in jQuery from a form request?
From what I understand, what you want to do is prevent the form from being submitted if the name is not filled out. You can do it this way: Your HTML file will contain the following content:…