Welcome!

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

SignUp Now!

Search results

  1. C

    -- Does a mobile device temporarily store the live video as its being live streamed?

    On a mobile device, during the process of live streaming, does the live video stream temporarily reside on the device's local storage or in memory as it is being live streamed?
  2. C

    Regarding GitHub repsoitory - is this code useable in it's current state?

    This is the repository: https://github.com/apivideo/api.video-ios-live-stream#ios-rtmp-live-stream-client Do you mind taking a peek at it and telling me, if I download it onto an iphone, is this useable in it's current state? Or are there other steps required to make that happen?
  3. C

    JavaScript Help with mouseEnter display

    thanks for all the previous help... I'm trying to display a message when a Form field (set_p_v) is selected to enter/input something. I've tried this code, but nothing displays: css: .info-msg { color: #059; background-color: #BEF; display: none; } <div class="info-msg"> <i class="fa...
  4. C

    JavaScript help to add "if" statement

    This code successfully displays the Message, and stops the Form submit: beforeSend: function() { Snackbar.show({text: 'MESSAGE-2'}); return false; I tried to add in an 'if' condition: beforeSend: function() { if (empty($error) && $_POST['set_p_v'] == 0) {...
  5. C

    PHP Error will display but echo will not.... help

    In my php, the error will display in the html, but echo will not: if($_SERVER["REQUEST_METHOD"] == "POST"){ . . . if (empty($error) && $_POST['field'] == etc... { echo "Hello"; $error = "Hello"; . . . etc. Any ideas how to get echo to display?
  6. C

    JavaScript Help to change this on(click to on submit

    How can I change this JS so that it displays upon submit ? <button id="submit-btn" class="btn-main" disabled>Submit</button></div> <script> $('.open-popup').on('click', function() { $('.overlay').addClass('shown'); }); $('.popup-close').on('click', function() {...
  7. C

    JavaScript Choosing Submit in Alert and submitting

    My goal is to have the Alert displays in the upload Form with choices, and when 'Yes' is chosen, the file submits. I this code where the Alert displays but when 'Yes' is chosen the Alert closes but the file doesn't submit: $('#submit-btn').on('click',function(e){...
  8. C

    JavaScript What does this do/say?

    What does this do/say? $('#submit-btn').attr('disabled', true);
  9. C

    JavaScript Which one is the 'first button'?

    Upon trying to add this SweetAlert to this successfully working submit Form: $('#upload-form form').ajaxForm({ url: '{{LINK aj/ffmpeg-submit}}?hash=' + $('.main_session').val(), beforeSend: function() { $('#submit-btn').attr('disabled', true); $('#submit-btn').val("{{LANG please_wait}}")...
  10. C

    CSS What would be the responsive size for this:

    What would be the media query responsive size for this device: https://www.lg.com/us/tablets/lg-V410-g-pad-7.0-lte
  11. C

    JavaScript How can I add delay to this js function?

    Upon page loads this js displays successfully. I'd like to add a delay X seconds after page load. This is the working code: !function($){$.fn.scramble=function(t,e,n,i){("number"!=typeof t||NaN===t||t<1e3||t>2e4)&&(t=3e3),("number"!=typeof e||NaN===e||e<5||e>1e3)&&(e=20);var...
  12. C

    HTML & CSS Help with putting the code in a section, not whole page

    I'm trying to test someone's code to put on a web page that already has content on it. So, I'd like it in a section of the page. But it doesn't appear. The html is this: <p> <center><div class="container"> <div class="text"></div> </div></center> The css is this: html, body {...
  13. C

    JavaScript Help with changing the font size

    I’m using this js and accompanying svg to display an interesting page headline animation. The js code shows: fontSize: 55. In desktop view the size looks good, but looks small in less-than-desktop view. I’d like some guidance with how to make it responsive. <svg...
  14. C

    CSS Ending CSS animation display

    This css code slides and displays text successfully. How/where can I add the ability for the text to disappear/end (or fade-away)? .slide-effect { position: relative; overflow: hidden; width: 100%; height: 40px; display: flex; justify-content: center; align-items: center; }...
  15. C

    HTML & CSS Help with responsive design - media queries

    A web page I have displays several sliding text messages, which appear successfully on my desltop view, however responsive views, via other devices, required several media queries so that the sizes of the sliding text messages appeared correctly. Currently, I have these media query breakpoints...
  16. C

    PHP Question about setting another variable

    The web video script that I'm working on modifying currently allows for submitting videos, via upload Form. Among other fields, the upload Form allows the uploader to select a subcategory. I believe the code below is querying the database to get the COUNT where the 'sub_category_id' exists. If...
  17. C

    PHP resolved

    resolved
  18. C

    HTML & CSS Help with Form styling of svg in the value ’ ’

    In this successfully working Search Box Form the svg appears successfully where it is, but I also need it to appear in value= ’ ’ <input type='search' placeholder='Search Location...' name='search_sub' class='searchbox-input' onkeyup='buttonUp();' required> <input type='submit'...
  19. C

    JavaScript Combined two Search Forms - not functioning

    Thanks for all the previous help. The web script that I’m modifying has a Search Form that successfully appears when a particular type of page displays: <?php if (preg_match('#/?sub__(\d)+\b#',$_SERVER['REQUEST_URI'],$matches)) { echo "<form action='#' method='POST' id='sub_id'> <input...
  20. C

    JavaScript How to show 2nd drop-down field after first drop-down selection is chosen?

    I’m trying to modify a web script where a drop-down works successfully. How can another drop-down field appear only after a selection has been made from the first drop-down list? Here’s the current code: <?php if ($pt->page == 'category' && $pt->show_sub == true) { ?> <div class="pull-right...
Back
Top Bottom