Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by Ordep-20

  1. Ordep-20

    JavaScript Make Delete and Edit Buttons Work

    Here solved, simple solution to add, edit and remove
  2. Ordep-20

    JavaScript Make Delete and Edit Buttons Work

    As I understand you want make a to-do list, when you clock the button add you like the itens be append in the main body? To edit you can call a Javascrit prompt, or create tour modal with these fields, cause the <div> content is not editable like <input> or <textarea>
  3. Ordep-20

    Answered Add class on click?

    you can use <a onclick='yourFunction(this)'>
  4. Ordep-20

    JavaScript Fire javascript on infinitely loading page

    if you want the js execute while the page is loading you can use window.onload = function() { //code or function call } window.onload = yourFunctionName(); //in jQuery $(document).ready(function(){ //function or call functions })
  5. Ordep-20

    Node.JS Youtube-video-js module blocking

    Hi guys I'm stucked in this nodeJS problem, I trying to make an embed youtube server using NodeJS, the base Idea its use and youtube/cdns video with external audio sync, I 've done this in PHP but have some issues for sync. I used this example...
Back
Top Bottom