Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~4K People Reached
Member Avatar for secretply

I need help in resolving a memory leak found using JavaScript. What the program does is auto scroll the videos and when it reaches the center (supposed to be a grid but for the purposes of this problem, it is not visibily shown but can be noticed immediately) or scrolls …

Member Avatar for secretply
0
334
Member Avatar for secretply

I have the following code executed on window load: var focuscheck = setInterval(focuswindow, 1000); $(anotherwindow).focus(function() { focuscheck = setInterval(focuswindow, 1000); }); $(anotherwindow).blur(function() { clearInterval(focuscheck); $("iframe:first", anotherwindow.document).on("mouseover", function(event) { focuscheck = setInterval(focuswindow, 1000); }); }); anotherwindow and focuswindow are fine so I won't post code for that. So this is how …

Member Avatar for LastMitch
0
656
Member Avatar for secretply

I just need some quick help on this, hopefully it should be simple. window.open().document.write("Hello world!"); This function opens a new tab with the text "Hello world!" in it, which is what I want. However, in Google Chrome, the address bar displays "about:blank" and Safari displays a blank address bar. In …

Member Avatar for Taywin
0
171
Member Avatar for secretply

I have a problem with retrieving a value from a query. I know what the problem is but not sure how to solve it. Pretend I have this code: $sql = mysql_query("SELECT * FROM sometable WHERE thisvalue = '$_SESSION["value"]'"); // This will always return one result. $result = mysql_fetch_row($sql); echo …

Member Avatar for secretply
0
134
Member Avatar for secretply

Been doing a lot of research on this issue but I can't get it to work properly. I have this CSS code that works in all browsers except for Internet Explorer. border-top: 3px solid rgba(139, 0, 0, 1); background-color: rgba(139, 0, 0, 0.75); color: rgba(139, 0, 0, 0.75); text-shadow: -2px …

Member Avatar for JorgeM
0
111
Member Avatar for secretply

Is it possible to send data from a webpage but only certain parts of it? For example: Webpage from form: <html> <head> </head> <body> <div>Non-form data</div> <form method="post" action=""> <input type="text" id="field1" /> </form> <div>Other non-form data</div> <?php $field = mysql_real_escape_string($_POST["field1"]); // Database info echo $field . "is in the …

Member Avatar for AleMonteiro
0
134
Member Avatar for jspence29

How can I make a table 100% width. For example, here http://spencedesign.netau.net/SNL/SNL.html#page3 I want this table to be the length of the panel, but I can't figure it out. I tried making the trs 100%, I tried just making the table 100%. I thought about changing the padding and the …

Member Avatar for JorgeM
0
98
Member Avatar for secretply

So I've been doing this for a few days and still am not getting the result I want. I have some HTML coding something similar to this: <div> <div><img /><span></span></div> <div><img /><span></span></div> . . . </div> The problem I have is when the nested div exceeds the width of the …

Member Avatar for secretply
0
106
Member Avatar for secretply

So I've been trying for about a month or so but been busy recently so couldn't address it then. Here is the code. [CODE]Public Class Form1 Dim CurrentTime As DateTime Private Sub ButtonStart_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonStart.Click ButtonStart.Enabled = False ButtonPause.Enabled = True CurrentTime = …

Member Avatar for secretply
0
2K
Member Avatar for secretply

This is part of the last coding that codeorder helped me with. I didn't include this in the last post because I thought this was something that I was going to be able to do. Unfortunately, it is not working properly. In addition to the controls being removed, the control …

Member Avatar for secretply
0
145
Member Avatar for secretply

So I have 2 picture boxes, a textbox, and a button. One of the picture boxes adds another row with the same controls but moved down when clicked and the other picture box (should) remove the same row that it was clicked on. I have PictureBoxAdd1, PictureBoxRemove1, TextBox1, and Button1 …

Member Avatar for codeorder
0
165