
cabbie
Members-
Posts
44 -
Joined
-
Last visited
About cabbie
- Birthday 02/19/1940
Contact Methods
-
Website URL
http://videosanctuary.com/index.html
Profile Information
-
Gender
Male
-
Location
Fort Collins CO
-
Interests
I am an old vet taking this country back podcast psb/dlive wed 11a-1p EST
-
Age
83
cabbie's Achievements
-
THis is the correct jsfiddle correct jsfiddle
-
You are a genius!!! Try it now..
-
OK Thanks for the response kicken . jsfiddle is a screwedup mess I was changing things trying to get something to work and totally destroyed it due to mass confusion I'll clean it up and try your suggestion. . Your mouseOver function is using your element variable, which is your id="butts" div. That div does not have a com attribute. I will windup with 8 buttons and need to get the com attribute out of the buttons. I put the the buttons in the butts div That was the only wayI could get hover to work on the buttons.
-
I have the event lisener working and go to mouseover function. but get attribute i need id. (Cant get with TagName) jsfiddle
-
OK Got it Attribute Thanks requinix One little hint can lead down the right path..
-
Still havnt figured out how to retrieve value.
-
OK I,m getting ideas now using the id w3
-
I,M trying to things that havnt been done before and it would be a lot easier for me to make a video to explain what I am trying to do and I hate to throw code out without a decent explanation of what does what. I,ll just say the main purpose of the buttons is provide entry points in videos. the onclick goes to a desired point in the video. That part is fairly easy when a button is added it is stacked in localStorage and the row of buttons are all innerHTML in a dive The entry point time is stored in each button. The buttons are transferred to another site &butts=sl my question would be with the new class of hover-comment i need a basic run-down on how to make it fly Thanks..The site For those that want to see the operation, ill provide a link. Click on the first image of the gal to go to that video. m not even sure if it is working now ie making new entry points. Site
-
I an transferring buttons a another page (localStorage) and each have a comment when hovered. It would save a lot of fuss to be able to store the comments in the buttons. Is there a way to retrieve the value out of such as this button? Also trying to pass the id to a show function to display the comment for that button. The tagg but1 is from trying with getElementByTagName. <html> <but1 type='button' id='1' class='btn btn-warning' value='Savin' onmouseover='showFunction(1)' onmouseout='clrdes()' onclick='goTo(500)'>1</button> </html>
-
It's a long story but if you go to this site in development, you will get a better idea what I am trying to do. It is a system to build like a 'TOC' or entry ponits on the video . The buttons when clicked goto whatever cuttennt-vid-time you have set. It is for video presentations and other things. Go into the video and click the new ep button, You will get a popup explaining the operation, When done I want to savethe src of the video, comments for the entry points and the buttons added in cookies Use the red EP button as return after playing the video a few seconds and adj to desired EP Video site The actual php (reached by ajax) to set cookies <code> <?php session_start(); if(isset($_POST["mp"])){ // echo "set"; $mp = $_POST["mp"]; $dall = $_POST["dall"];// echo "dall=".$dall; $uep = $_POST["uep"]; //echo "uep=".$uep; $_SESSION["mp"] = $mp; $_SESSION["dall"] = $dall; echo "sesdall".$_SESSION["dall"]; $_SESSION["uep"] = $uep; echo "sesuep".$_SESSION["uep"]; setcookie('mpCookie'.'$mp'.time()+30*24*60*60.); setcookie('dallCookie'.'$dall'.time()+30*24*60*60.); setcookie('uepCookie'.'$uep'.time()+30*24*60*60.); </code> } ?>
-
This is a site I am working on After setting a EP I want to save the src for video the comments and buttons added I am beginning to think it is impossible web site
-
How do I save or what is the syntax to save a button in a cookie? test site test I did try a header like <h3>Hello</h3> but get error with a boot5 button. <code> <?php $mp = "vids/coli.mp4"; $dall ="aaa";// echo "dall=".$dall; $uep = `<button type="button" class="btn btn-warning" onmouseover="show(0)" onmouseout="hide(0)" onclick="skip(-5000) ">0:0:0</button>`; //echo "uep=".$uep; setcookie('mp'.'$mp'.time()+30*24*60*60.); setcookie('dall'.'$dall'.time()+30*24*60*60.); setcookie('uep'.'$uep'.time()+30*24*60*60.); ?> </code> ?
-
Everything works but the SELECT COUNT $q = $db->prepare("SELECT COUNT(id) as records FROM tracker WHERE que_id = 3"); $q->execute(); $records = (int) $q->fetch(PDO::FETCH_OBJ)->records; echo '$records =', $records;
-
This is close.... http://pastebin.com/rqSVNBFV
-
Originally que_id was the increment variable and i was passing between pages. the table tracker has 2 columns id (not auto incremented) and que_id. each operator after login will start at the current que_id or id.. Yes I had where Que_id= que_id but changed it As you can see I have put a lot of time in this project and way over my head trying to develop this code and pulling my hair. Syntax in this particular operation is the problem..