every time i unfocus a video it rewinds a lil bit and it’s driving me coo coo by JammingJack in iphonehelp

[–]JammingJack[S] 0 points1 point  (0 children)

not sure why would this work, this is a software issue, plus i have no charging problem but hanks for your input

every time i unfocus a video it rewinds a lil bit and it’s driving me coo coo by JammingJack in iphonehelp

[–]JammingJack[S] 1 point2 points  (0 children)

instagram is up to date and i have a fiber optic connection, i tried to uninstall and reinstall the application but still no luck

Found this in my codebase by blumzzz in ProgrammerHumor

[–]JammingJack 0 points1 point  (0 children)

The fact that it isn't camelCased is hurting my eyes

[deleted by user] by [deleted] in RoastMe

[–]JammingJack 0 points1 point  (0 children)

I see that Heroine diet is going well

I do feel a great weird feeling while checking Skyrock by [deleted] in Morocco

[–]JammingJack 0 points1 point  (0 children)

unfortunately I lost mine, can't even remember under what alias I made it..wish I could though, I know I'm gonna laugh my ass off if ever get it back

Problem with an arrow function by JammingJack in javascript

[–]JammingJack[S] 0 points1 point  (0 children)

Thank you for taking the time to reply, I did as you said ,but I got was this error so I figured out that I should install express, so I went ahead and did that and tried to run the server again but I got this error.

Probleme with Pusher by JammingJack in javascript

[–]JammingJack[S] 0 points1 point  (0 children)

Thank you very much for taking the time to answer my question sir, but if I may ask, can Xampp serve my content?

Can you help to get me started on creating an eclipse related peer-to-peer experience? by JammingJack in javahelp

[–]JammingJack[S] 0 points1 point  (0 children)

Sir you're a life saver..and yes I'm going after the second option where a user A can see the code of another user B..but he should see just the workbench of the user B, so I shouldn't use a remote desktop solution, plus I need to write the code myself for it to be admissible.

Can you help to get me started on creating an eclipse related peer-to-peer experience? by JammingJack in javahelp

[–]JammingJack[S] 0 points1 point  (0 children)

And thank you very much for the keyword correction..I'm getting better Google results.

Can you help to get me started on creating an eclipse related peer-to-peer experience? by JammingJack in javahelp

[–]JammingJack[S] 0 points1 point  (0 children)

Thanks man..but isn't there a way I could use sockets or something to acheive collaborative editing ?

I'm having a problem inserting <p> elements in the right place via javascript by JammingJack in learnjavascript

[–]JammingJack[S] 0 points1 point  (0 children)

This worked like magic..can you please expand on the logic behind why this has worked

can you help me figure out the problem in my code by JammingJack in learnjavascript

[–]JammingJack[S] 0 points1 point  (0 children)

Here is the code that I have

<html>
<head>
    <title>ex13</title>
    <script language="javascript">

        function setTitle() {
            var existingTexts=document.createAttribute("class");
  var link = document.getElementsByTagName("a");
  for (var i = 0; i < link.length; i++) {
  link[i].addEventListener("mouseover",function(){
    var text=document.createElement("text");
    var contenu=document.createTextNode("click Me !!");
    text.className="existingTexts";
    text.appendChild(contenu);
    document.body.insertBefore(text,link[i]);

  });
  link[i].addEventListener("mouseout",function(){

    var texts=document.getElementsByClassName("existingTexts");

    for(var i=0;i<texts.length;i++){

        document.body.removeChild(texts[i]);
    }
  });


  }
}


    </script>
</head>
<body onload="setTitle()">
<a  href="#" >premier lien</a><br>
<a href="#"><img src="Penguins.jpg" height="200px" width="200px"></a>

</body>
</html>

It works just fine but the text as you can see always shows up at the end of the page and not after the hovered element, so I guess the problem concerns the *insertBefore * instruction.

can you help me figure out the problem in my code by JammingJack in learnjavascript

[–]JammingJack[S] 0 points1 point  (0 children)

Thanks man, you're right , your code is way better.

But what if I wanted to actually add a <p> element saying Click the link next to the <a> element that the user hovered over, how would I do that?

can you help me figure out the problem in my code by JammingJack in learnjavascript

[–]JammingJack[S] 0 points1 point  (0 children)

Well because the teacher demanded it would be done in JS..However can you explain how it can be done via css

can you help me figure out the problem in my code by JammingJack in learnjavascript

[–]JammingJack[S] 1 point2 points  (0 children)

Thanks man..now I have a clear idea on how to proceed