Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Microsoft Windows [Version 10.0.17134.1304]
- (c) 2018 Microsoft Corporation. All rights reserved.
- C:\Windows\System32>youtube-dl --help
- Usage: youtube-dl [OPTIONS] URL [URL...]
- Options:
- General Options:
- -h, --help Print this help text and exit
- --version Print program version and exit
- -U, --update Update this program to latest version. Make sure that you have sufficient permissions (run with sudo if needed)
- -i, --ignore-errors Continue on download errors, for example to skip unavailable videos in a playlist
- --abort-on-error Abort downloading of further videos (in the playlist or the command line) if an error occurs
- --dump-user-agent Display the current browser identification
- --list-extractors List all supported extractors
- --extractor-descriptions Output descriptions of all supported extractors
- --force-generic-extractor Force extraction to use the generic extractor
- --default-search PREFIX Use this prefix for unqualified URLs. For example "gvsearch2:" downloads two videos from google videos for youtube-dl "large
- apple". Use the value "auto" to let youtube-dl guess ("auto_warning" to emit a warning when guessing). "error" just throws an
- error. The default value "fixup_error" repairs broken URLs, but emits an error if this is not possible instead of searching.
- --ignore-config Do not read configuration files. When given in the global configuration file /etc/youtube-dl.conf: Do not read the user
- configuration in ~/.config/youtube-dl/config (%APPDATA%/youtube-dl/config.txt on Windows)
- --config-location PATH Location of the configuration file; either the path to the config or its containing directory.
- --flat-playlist Do not extract the videos of a playlist, only list them.
- --mark-watched Mark videos watched (YouTube only)
- --no-mark-watched Do not mark videos watched (YouTube only)
- --no-color Do not emit color codes in output
- Network Options:
- --proxy URL Use the specified HTTP/HTTPS/SOCKS proxy. To enable SOCKS proxy, specify a proper scheme. For example socks5://127.0.0.1:1080/.
- Pass in an empty string (--proxy "") for direct connection
- --socket-timeout SECONDS Time to wait before giving up, in seconds
- --source-address IP Client-side IP address to bind to
- -4, --force-ipv4 Make all connections via IPv4
- -6, --force-ipv6 Make all connections via IPv6
- Geo Restriction:
- --geo-verification-proxy URL Use this proxy to verify the IP address for some geo-restricted sites. The default proxy specified by --proxy (or none, if the
- option is not present) is used for the actual downloading.
- --geo-bypass Bypass geographic restriction via faking X-Forwarded-For HTTP header
- --no-geo-bypass Do not bypass geographic restriction via faking X-Forwarded-For HTTP header
- --geo-bypass-country CODE Force bypass geographic restriction with explicitly provided two-letter ISO 3166-2 country code
- --geo-bypass-ip-block IP_BLOCK Force bypass geographic restriction with explicitly provided IP block in CIDR notation
- Video Selection:
- --playlist-start NUMBER Playlist video to start at (default is 1)
- --playlist-end NUMBER Playlist video to end at (default is last)
- --playlist-items ITEM_SPEC Playlist video items to download. Specify indices of the videos in the playlist separated by commas like: "--playlist-items
- 1,2,5,8" if you want to download videos indexed 1, 2, 5, 8 in the playlist. You can specify range: "--playlist-items 1-3,7,10-13",
- it will download the videos at index 1, 2, 3, 7, 10, 11, 12 and 13.
- --match-title REGEX Download only matching titles (regex or caseless sub-string)
- --reject-title REGEX Skip download for matching titles (regex or caseless sub-string)
- --max-downloads NUMBER Abort after downloading NUMBER files
- --min-filesize SIZE Do not download any videos smaller than SIZE (e.g. 50k or 44.6m)
- --max-filesize SIZE Do not download any videos larger than SIZE (e.g. 50k or 44.6m)
- --date DATE Download only videos uploaded in this date
- --datebefore DATE Download only videos uploaded on or before this date (i.e. inclusive)
- --dateafter DATE Download only videos uploaded on or after this date (i.e. inclusive)
- --min-views COUNT Do not download any videos with less than COUNT views
- --max-views COUNT Do not download any videos with more than COUNT views
- --match-filter FILTER Generic video filter. Specify any key (see the "OUTPUT TEMPLATE" for a list of available keys) to match if the key is present, !key
- to check if the key is not present, key > NUMBER (like "comment_count > 12", also works with >=, <, <=, !=, =) to compare against a
- number, key = 'LITERAL' (like "uploader = 'Mike Smith'", also works with !=) to match against a string literal and & to require
- multiple matches. Values which are not known are excluded unless you put a question mark (?) after the operator. For example, to
- only match videos that have been liked more than 100 times and disliked less than 50 times (or the dislike functionality is not
- available at the given service), but who also have a description, use --match-filter "like_count > 100 & dislike_count <? 50 &
- description" .
- --no-playlist Download only the video, if the URL refers to a video and a playlist.
- --yes-playlist Download the playlist, if the URL refers to a video and a playlist.
- --age-limit YEARS Download only videos suitable for the given age
- --download-archive FILE Download only videos not listed in the archive file. Record the IDs of all downloaded videos in it.
- --include-ads Download advertisements as well (experimental)
- Download Options:
- -r, --limit-rate RATE Maximum download rate in bytes per second (e.g. 50K or 4.2M)
- -R, --retries RETRIES Number of retries (default is 10), or "infinite".
- --fragment-retries RETRIES Number of retries for a fragment (default is 10), or "infinite" (DASH, hlsnative and ISM)
- --skip-unavailable-fragments Skip unavailable fragments (DASH, hlsnative and ISM)
- --abort-on-unavailable-fragment Abort downloading when some fragment is not available
- --keep-fragments Keep downloaded fragments on disk after downloading is finished; fragments are erased by default
- --buffer-size SIZE Size of download buffer (e.g. 1024 or 16K) (default is 1024)
- --no-resize-buffer Do not automatically adjust the buffer size. By default, the buffer size is automatically resized from an initial value of SIZE.
- --http-chunk-size SIZE Size of a chunk for chunk-based HTTP downloading (e.g. 10485760 or 10M) (default is disabled). May be useful for bypassing
- bandwidth throttling imposed by a webserver (experimental)
- --playlist-reverse Download playlist videos in reverse order
- --playlist-random Download playlist videos in random order
- --xattr-set-filesize Set file xattribute ytdl.filesize with expected file size
- --hls-prefer-native Use the native HLS downloader instead of ffmpeg
- --hls-prefer-ffmpeg Use ffmpeg instead of the native HLS downloader
- --hls-use-mpegts Use the mpegts container for HLS videos, allowing to play the video while downloading (some players may not be able to play it)
- --external-downloader COMMAND Use the specified external downloader. Currently supports aria2c,avconv,axel,curl,ffmpeg,httpie,wget
- --external-downloader-args ARGS Give these arguments to the external downloader
- Filesystem Options:
- -a, --batch-file FILE File containing URLs to download ('-' for stdin), one URL per line. Lines starting with '#', ';' or ']' are considered as comments
- and ignored.
- --id Use only video ID in file name
- -o, --output TEMPLATE Output filename template, see the "OUTPUT TEMPLATE" for all the info
- --autonumber-start NUMBER Specify the start value for %(autonumber)s (default is 1)
- --restrict-filenames Restrict filenames to only ASCII characters, and avoid "&" and spaces in filenames
- -w, --no-overwrites Do not overwrite files
- -c, --continue Force resume of partially downloaded files. By default, youtube-dl will resume downloads if possible.
- --no-continue Do not resume partially downloaded files (restart from beginning)
- --no-part Do not use .part files - write directly into output file
- --no-mtime Do not use the Last-modified header to set the file modification time
- --write-description Write video description to a .description file
- --write-info-json Write video metadata to a .info.json file
- --write-annotations Write video annotations to a .annotations.xml file
- --load-info-json FILE JSON file containing the video information (created with the "--write-info-json" option)
- --cookies FILE File to read cookies from and dump cookie jar in
- --cache-dir DIR Location in the filesystem where youtube-dl can store some downloaded information permanently. By default $XDG_CACHE_HOME/youtube-
- dl or ~/.cache/youtube-dl . At the moment, only YouTube player files (for videos with obfuscated signatures) are cached, but that
- may change.
- --no-cache-dir Disable filesystem caching
- --rm-cache-dir Delete all filesystem cache files
- Thumbnail images:
- --write-thumbnail Write thumbnail image to disk
- --write-all-thumbnails Write all thumbnail image formats to disk
- --list-thumbnails Simulate and list all available thumbnail formats
- Verbosity / Simulation Options:
- -q, --quiet Activate quiet mode
- --no-warnings Ignore warnings
- -s, --simulate Do not download the video and do not write anything to disk
- --skip-download Do not download the video
- -g, --get-url Simulate, quiet but print URL
- -e, --get-title Simulate, quiet but print title
- --get-id Simulate, quiet but print id
- --get-thumbnail Simulate, quiet but print thumbnail URL
- --get-description Simulate, quiet but print video description
- --get-duration Simulate, quiet but print video length
- --get-filename Simulate, quiet but print output filename
- --get-format Simulate, quiet but print output format
- -j, --dump-json Simulate, quiet but print JSON information. See the "OUTPUT TEMPLATE" for a description of available keys.
- -J, --dump-single-json Simulate, quiet but print JSON information for each command-line argument. If the URL refers to a playlist, dump the whole playlist
- information in a single line.
- --print-json Be quiet and print the video information as JSON (video is still being downloaded).
- --newline Output progress bar as new lines
- --no-progress Do not print progress bar
- --console-title Display progress in console titlebar
- -v, --verbose Print various debugging information
- --dump-pages Print downloaded pages encoded using base64 to debug problems (very verbose)
- --write-pages Write downloaded intermediary pages to files in the current directory to debug problems
- --print-traffic Display sent and read HTTP traffic
- -C, --call-home Contact the youtube-dl server for debugging
- --no-call-home Do NOT contact the youtube-dl server for debugging
- Workarounds:
- --encoding ENCODING Force the specified encoding (experimental)
- --no-check-certificate Suppress HTTPS certificate validation
- --prefer-insecure Use an unencrypted connection to retrieve information about the video. (Currently supported only for YouTube)
- --user-agent UA Specify a custom user agent
- --referer URL Specify a custom referer, use if the video access is restricted to one domain
- --add-header FIELD:VALUE Specify a custom HTTP header and its value, separated by a colon ':'. You can use this option multiple times
- --bidi-workaround Work around terminals that lack bidirectional text support. Requires bidiv or fribidi executable in PATH
- --sleep-interval SECONDS Number of seconds to sleep before each download when used alone or a lower bound of a range for randomized sleep before each
- download (minimum possible number of seconds to sleep) when used along with --max-sleep-interval.
- --max-sleep-interval SECONDS Upper bound of a range for randomized sleep before each download (maximum possible number of seconds to sleep). Must only be used
- along with --min-sleep-interval.
- Video Format Options:
- -f, --format FORMAT Video format code, see the "FORMAT SELECTION" for all the info
- --all-formats Download all available video formats
- --prefer-free-formats Prefer free video formats unless a specific one is requested
- -F, --list-formats List all available formats of requested videos
- --youtube-skip-dash-manifest Do not download the DASH manifests and related data on YouTube videos
- --merge-output-format FORMAT If a merge is required (e.g. bestvideo+bestaudio), output to given container format. One of mkv, mp4, ogg, webm, flv. Ignored if no
- merge is required
- Subtitle Options:
- --write-sub Write subtitle file
- --write-auto-sub Write automatically generated subtitle file (YouTube only)
- --all-subs Download all the available subtitles of the video
- --list-subs List all available subtitles for the video
- --sub-format FORMAT Subtitle format, accepts formats preference, for example: "srt" or "ass/srt/best"
- --sub-lang LANGS Languages of the subtitles to download (optional) separated by commas, use --list-subs for available language tags
- Authentication Options:
- -u, --username USERNAME Login with this account ID
- -p, --password PASSWORD Account password. If this option is left out, youtube-dl will ask interactively.
- -2, --twofactor TWOFACTOR Two-factor authentication code
- -n, --netrc Use .netrc authentication data
- --video-password PASSWORD Video password (vimeo, smotri, youku)
- Adobe Pass Options:
- --ap-mso MSO Adobe Pass multiple-system operator (TV provider) identifier, use --ap-list-mso for a list of available MSOs
- --ap-username USERNAME Multiple-system operator account login
- --ap-password PASSWORD Multiple-system operator account password. If this option is left out, youtube-dl will ask interactively.
- --ap-list-mso List all supported multiple-system operators
- Post-processing Options:
- -x, --extract-audio Convert video files to audio-only files (requires ffmpeg or avconv and ffprobe or avprobe)
- --audio-format FORMAT Specify audio format: "best", "aac", "flac", "mp3", "m4a", "opus", "vorbis", or "wav"; "best" by default; No effect without -x
- --audio-quality QUALITY Specify ffmpeg/avconv audio quality, insert a value between 0 (better) and 9 (worse) for VBR or a specific bitrate like 128K
- (default 5)
- --recode-video FORMAT Encode the video to another format if necessary (currently supported: mp4|flv|ogg|webm|mkv|avi)
- --postprocessor-args ARGS Give these arguments to the postprocessor
- -k, --keep-video Keep the video file on disk after the post-processing; the video is erased by default
- --no-post-overwrites Do not overwrite post-processed files; the post-processed files are overwritten by default
- --embed-subs Embed subtitles in the video (only for mp4, webm and mkv videos)
- --embed-thumbnail Embed thumbnail in the audio as cover art
- --add-metadata Write metadata to the video file
- --metadata-from-title FORMAT Parse additional metadata like song title / artist from the video title. The format syntax is the same as --output. Regular
- expression with named capture groups may also be used. The parsed parameters replace existing values. Example: --metadata-from-
- title "%(artist)s - %(title)s" matches a title like "Coldplay - Paradise". Example (regex): --metadata-from-title "(?P<artist>.+?)
- - (?P<title>.+)"
- --xattrs Write metadata to the video file's xattrs (using dublin core and xdg standards)
- --fixup POLICY Automatically correct known faults of the file. One of never (do nothing), warn (only emit a warning), detect_or_warn (the default;
- fix file if we can, warn otherwise)
- --prefer-avconv Prefer avconv over ffmpeg for running the postprocessors
- --prefer-ffmpeg Prefer ffmpeg over avconv for running the postprocessors (default)
- --ffmpeg-location PATH Location of the ffmpeg/avconv binary; either the path to the binary or its containing directory.
- --exec CMD Execute a command on the file after downloading and post-processing, similar to find's -exec syntax. Example: --exec 'adb push {}
- /sdcard/Music/ && rm {}'
- --convert-subs FORMAT Convert the subtitles to other format (currently supported: srt|ass|vtt|lrc)
- [...]
- E:\cs>dir
- Volume in drive E has no label.
- Volume Serial Number is 6330-3030
- Directory of E:\cs
- 01/04/2020 07:32 PM <DIR> .
- 01/04/2020 07:32 PM <DIR> ..
- 01/04/2020 07:32 PM <DIR> Node.js
- 0 File(s) 0 bytes
- 3 Dir(s) 427,294,720 bytes free
- E:\cs>youtube-dl --abort-on-unavailable-fragment https://archive.org/download/beastars-season-1-1080p/%5BHCS%5D%20Beastars%20-%2003%20%5B1080p%5D.mkv
- [generic] [HCS] Beastars - 03 [1080p]: Requesting header
- [redirect] Following redirect to https://ia601504.us.archive.org/14/items/beastars-season-1-1080p/%5BHCS%5D%20Beastars%20-%2003%20%5B1080p%5D.mkv
- [generic] [HCS] Beastars - 03 [1080p]: Requesting header
- WARNING: Falling back on generic information extractor.
- [generic] [HCS] Beastars - 03 [1080p]: Downloading webpage
- WARNING: URL could be a direct video link, returning it as such.
- [download] Destination: [HCS] Beastars - 03 [1080p]-[HCS] Beastars - 03 [1080p].mkv
- [download] 2.3% of 513.77MiB at 839.68KiB/s ETA 10:12
- ERROR: Interrupted by user
- E:\cs>ren "[HCS] Beastars - 03 [1080p]-[HCS] Beastars - 03 [1080p].mkv.part" "[HCS] Beastars - 03 [1080p]-[HCS] Beastars - 03 [1080p].mkv"
- E:\cs>ffmpeg -i "[HCS] Beastars - 03 [1080p]-[HCS] Beastars - 03 [1080p].mkv" "[HCS] Beastars - 03 [1080p].mp4"
- ffmpeg version N-91990-g49c67e79ca Copyright (c) 2000-2018 the FFmpeg developers
- built with gcc 8.2.1 (GCC) 20180813
- configuration: --enable-gpl --enable-version3 --enable-sdl2 --enable-fontconfig --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libfreetype --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libtheora --enable-libtwolame --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libzimg --enable-lzma --enable-zlib --enable-gmp --enable-libvidstab --enable-libvorbis --enable-libvo-amrwbenc --enable-libmysofa --enable-libspeex --enable-libxvid --enable-libaom --enable-libmfx --enable-amf --enable-ffnvcodec --enable-cuvid --enable-d3d11va --enable-nvenc --enable-nvdec --enable-dxva2 --enable-avisynth
- libavutil 56. 19.101 / 56. 19.101
- libavcodec 58. 30.100 / 58. 30.100
- libavformat 58. 18.101 / 58. 18.101
- libavdevice 58. 4.103 / 58. 4.103
- libavfilter 7. 32.100 / 7. 32.100
- libswscale 5. 2.100 / 5. 2.100
- libswresample 3. 2.100 / 3. 2.100
- libpostproc 55. 2.100 / 55. 2.100
- Guessed Channel Layout for Input Stream #0.1 : stereo
- Input #0, matroska,webm, from '[HCS] Beastars - 03 [1080p]-[HCS] Beastars - 03 [1080p].mkv':
- Metadata:
- encoder : libebml v1.3.9 + libmatroska v1.5.2
- creation_time : 2019-11-01T03:17:23.000000Z
- Duration: 00:22:57.18, start: 0.000000, bitrate: 72 kb/s
- Stream #0:0(jpn): Video: h264 (Main), yuv420p(progressive), 1920x1080 [SAR 1:1 DAR 16:9], 23.98 fps, 23.98 tbr, 1k tbn, 47.95 tbc (default)
- Stream #0:1(jpn): Audio: eac3, 48000 Hz, stereo, fltp (default)
- Stream #0:2: Subtitle: ass (default)
- Stream mapping:
- Stream #0:0 -> #0:0 (h264 (native) -> h264 (libx264))
- Stream #0:1 -> #0:1 (eac3 (native) -> aac (native))
- Press [q] to stop, [?] for help
- [libx264 @ 0000020c8f3423c0] using SAR=1/1
- [libx264 @ 0000020c8f3423c0] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX XOP FMA3 BMI2 AVX2
- [libx264 @ 0000020c8f3423c0] profile High, level 4.0, 4:2:0, 8-bit
- [libx264 @ 0000020c8f3423c0] 264 - core 157 r2932 303c484 - H.264/MPEG-4 AVC codec - Copyleft 2003-2018 - http://www.videolan.org/x264.html - options: cabac=1 ref=3 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=3 lookahead_threads=1 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=3 b_pyramid=2 b_adapt=1 b_bias=0 direct=1 weightb=1 open_gop=0 weightp=2 keyint=250 keyint_min=23 scenecut=40 intra_refresh=0 rc_lookahead=40 rc=crf mbtree=1 crf=23.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00
- Output #0, mp4, to '[HCS] Beastars - 03 [1080p].mp4':
- Metadata:
- encoder : Lavf58.18.101
- Stream #0:0(jpn): Video: h264 (libx264) (avc1 / 0x31637661), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], q=-1--1, 23.98 fps, 24k tbn, 23.98 tbc (default)
- Metadata:
- encoder : Lavc58.30.100 libx264
- Side data:
- cpb: bitrate max/min/avg: 0/0/0 buffer size: 0 vbv_delay: -1
- Stream #0:1(jpn): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 128 kb/s (default)
- Metadata:
- encoder : Lavc58.30.100 aac
- [matroska,webm @ 0000020c8f28a2c0] Read errorme=00:00:33.96 bitrate=2099.5kbits/s speed=0.0185x
- frame= 823 fps=0.3 q=-1.0 Lsize= 9677kB time=00:00:34.56 bitrate=2293.8kbits/s speed=0.0147x
- video:9134kB audio:519kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.248960%
- [libx264 @ 0000020c8f3423c0] frame I:25 Avg QP:14.71 size: 56865
- [libx264 @ 0000020c8f3423c0] frame P:262 Avg QP:19.79 size: 21632
- [libx264 @ 0000020c8f3423c0] frame B:536 Avg QP:20.30 size: 4223
- [libx264 @ 0000020c8f3423c0] consecutive B-frames: 7.8% 9.5% 20.0% 62.7%
- [libx264 @ 0000020c8f3423c0] mb I I16..4: 42.0% 45.1% 12.9%
- [libx264 @ 0000020c8f3423c0] mb P I16..4: 5.8% 14.2% 1.9% P16..4: 24.3% 4.3% 2.2% 0.0% 0.0% skip:47.3%
- [libx264 @ 0000020c8f3423c0] mb B I16..4: 0.4% 0.6% 0.1% B16..8: 21.1% 0.9% 0.1% direct: 1.1% skip:75.6% L0:44.7% L1:54.2% BI: 1.0%
- [libx264 @ 0000020c8f3423c0] 8x8 transform intra:58.5% inter:82.8%
- [libx264 @ 0000020c8f3423c0] coded y,uvDC,uvAC intra: 30.9% 45.9% 17.2% inter: 3.7% 7.2% 0.3%
- [libx264 @ 0000020c8f3423c0] i16 v,h,dc,p: 47% 22% 9% 22%
- [libx264 @ 0000020c8f3423c0] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 31% 14% 33% 3% 4% 4% 4% 3% 3%
- [libx264 @ 0000020c8f3423c0] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 24% 16% 17% 7% 9% 8% 7% 6% 5%
- [libx264 @ 0000020c8f3423c0] i8c dc,h,v,p: 53% 20% 19% 8%
- [libx264 @ 0000020c8f3423c0] Weighted P-Frames: Y:3.1% UV:3.1%
- [libx264 @ 0000020c8f3423c0] ref P L0: 65.9% 6.4% 17.8% 9.4% 0.5%
- [libx264 @ 0000020c8f3423c0] ref B L0: 81.2% 15.3% 3.4%
- [libx264 @ 0000020c8f3423c0] ref B L1: 96.1% 3.9%
- [libx264 @ 0000020c8f3423c0] kb/s:2179.70
- [aac @ 0000020c8f352d80] Qavg: 3983.690
- E:\cs>youtube-dl -v
- [debug] System config: []
- [debug] User config: []
- [debug] Custom config: []
- [debug] Command-line args: ['-v']
- [debug] Encodings: locale cp1252, fs mbcs, out cp437, pref cp1252
- [debug] youtube-dl version 2020.11.17
- [debug] Python version 3.4.4 (CPython) - Windows-10-10.0.17134
- [debug] exe versions: ffmpeg 3.4, ffprobe N-91990-g49c67e79ca
- [debug] Proxy map: {}
- Usage: youtube-dl [OPTIONS] URL [URL...]
- youtube-dl: error: You must provide at least one URL.
- Type youtube-dl --help to see a list of all options.
- E:\cs>
- investorshangout.com
- m.investorshangout.com
- view-source:https://m.investorshangout.com/post/view?id=5815492
- <<<
- <!DOCTYPE html>
- <html lang="en"><head>
- <title>That makes little sense to my wee - SFOR Strikeforce Technologies, Inc. #5815492 - Investors Hangout</title>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta name="google-site-verification" content="EoR36pJ1xwoQCCldJu8nEfc30AUiQ0NhZGrPsifbCkg" />
- <meta name="msvalidate.01" content="7CCAB6AB7869067105A9C6609D0A4B19" />
- <meta name="theme-color" content="#476f97" />
- <meta name="description" content="SFOR Strikeforce Technologies, Inc.: That makes little sense to my wee brain. - #5815492" />
- <meta property="og:title" content="That makes little sense to my wee - SFOR Strikeforce Technologies, Inc. #5815492 - Investors Hangout" />
- <meta property="og:description" content="SFOR Strikeforce Technologies, Inc.: That makes little sense to my wee brain. - #5815492" />
- <meta property="og:type" content="article" />
- <meta property="og:url" content="https://investorshangout.com/post/view?id=5815492" />
- <meta property="og:site_name" content="Investors Hangout" />
- <meta property="og:image" content="https://investorshangout.com/images/Stock-Message-Boards-Investors-Hangout-2017-.png">
- <meta property="og:image:type" content="image/png">
- <meta property="og:image:width" content="400">
- <meta property="og:image:height" content="400">
- <link rel="canonical" href="https://investorshangout.com/post/view?id=5815492" />
- <!--<link rel="alternate" type="application/rss+xml" title="RSS Feed" href="https://investorshangout.com/board/boardfeeds?id=66604"/>-->
- <link rel="image_src" href="/images/Investors-Hangout-Stock-Message-Boards-thumbnail-2015.png" alt="Stock Message Boards - Investors Hangout"/>
- <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
- <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
- <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
- <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#1d3452">
- <meta name="msapplication-TileColor" content="#1d3452">
- <meta name="theme-color" content="#ffffff">
- <link href="/css/style.css" type="text/css" rel="stylesheet" />
- <link href="/css/font-awesome.css" type="text/css" rel="stylesheet" />
- <link href="/css/font-awesome.min.css" type="text/css" rel="stylesheet" />
- <link href="/css/bootstrap.min.css" type="text/css" rel="stylesheet" />
- <link href="/css/investors.css" type="text/css" rel="stylesheet" />
- <!-- Push Monkey code -->
- <link id="pm-manifest" rel="manifest" href="https://getpushmonkey.com/manifest-72P0BXLHZ3R1S965K.json"><script type="text/javascript" id="pm-sdk" src="https://getpushmonkey.com/sdk/config-72P0BXLHZ3R1S965K.js"></script>
- <!-- Native Units -->
- <script type="text/javascript" src="//s.ntv.io/serve/load.js" async></script>
- <script type="text/javascript" src="/js/jquery.1.4.2.min.js"></script>
- <script type="text/javascript" src="/js/jquery.min.js"></script>
- <script type="text/javascript" src="/js/customwork.js"></script>
- <script type="text/javascript" src="/js/investors.js"></script>
- <!--<script type="text/javascript" src="/js/jquery.1.9.1.min.js"></script> -->
- <script type="text/javascript">
- function show(a,f,e,h) {
- var a = document.getElementById(a);
- var b=a.selectionStart;
- var g=a.selectionEnd;
- if(typeof(b)==="undefined"&&document.selection)
- {
- a.focus();
- var c=document.selection.createRange();
- if(c.parentElement()===a)
- {
- if(c.text)
- {
- c.text=f+c.text.replace(/http:\/\//i,"")+e;
- c.select()
- }
- else
- {
- if(h==="+")
- {
- h="";
- }
- c.text=f+h+e;
- c.moveStart("character",-h.length-e.length);
- c.moveEnd("character",-h.length-e.length);
- c.select()
- }
- }
- }
- else
- {
- var j;
- if(b===g)
- {
- if(h==="+")
- {
- h="";
- }
- j=a.scrollTop;
- a.value=a.value.substring(0,b)+f+h+e+a.value.substring(g,a.value.length);
- a.focus();
- a.setSelectionRange(g+f.length+h.length,g+f.length+h.length);
- a.scrollTop=j;
- }
- else
- {
- var d=a.value.substring(b,g);
- d=d.replace(/http:\/\//i,"");
- var i=d.length-(g-b);
- j=a.scrollTop;
- a.value=a.value.substring(0,b)+f+d+e+a.value.substring(g,a.value.length);
- a.focus();
- a.setSelectionRange(g+f.length+e.length+i,g+f.length+e.length+i);
- a.scrollTop=j
- }
- }return false
- }
- </script>
- <script type="text/javascript">var site_url = ''; </script>
- <!-- IMS DFP Tags -->
- <script type="text/javascript">
- (function() {
- window.advBidxc = window.advBidxc || {};
- window.advBidxc.startTime = new Date().getTime();
- function loadScript(tagSrc) {
- var scriptTag = document.createElement('script'),
- placeTag = document.getElementsByTagName("script")[0];
- scriptTag.type = 'text/javascript';
- scriptTag.async = true;
- scriptTag.src = tagSrc;
- placeTag.parentNode.insertBefore(scriptTag, placeTag);
- }
- var mnSrc = '//hbx.media.net/bidexchange.js?cid=8CU2C156D&version=5.1' + '&dn=' +
- window.location.hostname;
- loadScript(mnSrc);
- })();
- </script>
- <!-- IMS DFP Tags -->
- </head>
- <body lang="en" dir="ltr">
- <!--<div align="center"><a style="color:#036; font-weight:bold; font-size:18px; padding-top:10px; padding-bottom:10px;" href="https://twitter.com/InvestorHangout" target="_new">Follow Us On Twitter!! (Click Here)</a><br></div>-->
- <!--<div align="center" style="background-color:#FFF; padding-top:10px; padding-bottom:10px;"><a style="color:#006; font-weight:bold; text-decoration:underline; font-size:16px; background-color:#FFF;" href="https://m.investorshangout.com/Coronavirus-COVID-19-93660/">Discuss COVID-19 and share your opinions, information and stories. (Click Here)</a></div>-->
- <div id="super_wrapper">
- <div id="wrapper">
- <div id="header">
- <div class="mm_bg">
- <div class="head_content">
- <div class="col-xs-9 col-md-9 col-sm-9 col-lg-9 logo-section">
- <div id="logo">
- <!--<a itemprop="url" href="https://m.investorshangout.com/">-->
- <a href="https://m.investorshangout.com/">
- <img src="/images/Investors-Hangout-Stock-Message-Boards-Logo-1-2017.png" alt="Investors Hangout Stock Message Boards Logo"/>
- </a>
- </div>
- </div>
- <!-- toggle left -->
- <div class="col-xs-3 col-md-3 col-sm-3 col-lg-3 right-toggle">
- <div class="toggle-right toggle-r">
- <span> </span>
- <span></span>
- <span></span>
- </div>
- </div>
- <!-- toggle left end -->
- <!--<div class="col-xs-2 col-md-2 col-sm-2 col-lg-2 right-toggle">
- <div class="toggle-right toggle-r">
- <span> </span>
- <span></span>
- <span></span>
- </div>
- </div>-->
- <div class="menu-toggle-overlay"></div>
- <div id="menu">
- <ul id="yw0">
- <li><a href="/"><i class="fa fa-home"></i>Home</a></li>
- <li><a href="/mailbox"><i class="fa fa-envelope"></i>Mailbox</a></li>
- <li><a href="/board"><i class="fa fa-group"></i>Boards</a></li>
- <li><a href="/board/favorite"><i class="fa fa-star"></i>Favorites</a></li>
- <li><a href="/whatshot/activeboard"><i class="fa fa-question-circle"></i>Whats Hot!</a></li>
- <li><a href="/login"><i class="fa fa-unlock-alt"></i>Login - Join Now!</a></li>
- </ul> </div>
- <div class="clear_all" id="Guest"></div>
- </div>
- </div>
- </div>
- <div id="main" class="in-no-padding container">
- <!-- commenting on 10-06 -->
- <!-- <div id="left_advertise"> -->
- <!-- <div class="board_add" align="center"> --> <!-- </div> -->
- <!-- </div> -->
- <!-- till here 173 -->
- <div style="" class="col-md-8">
- <div style="float:left">
- <div id="google_translate_element"></div>
- </div>
- </div>
- <style>
- #search_box .portlet{
- float:left;
- margin-right:5px;
- width: 301px;
- }
- </style>
- <!-- Search box -->
- <div id="search_box" >
- <div class="row">
- <div class="col-sm-12 col-xs-12">
- <div class="portlet" id="yw1">
- <div class="portlet-content">
- <script type="text/javascript">
- function SearchContent() {
- var url = '/search';
- var search_txt = document.getElementById('searchs').value;
- if(search_txt=='') {
- alert('Please enter search keyword');
- return;
- }
- var search_type = document.getElementById("stype").value;
- url = url+'?q='+search_txt+'&type='+search_type+'&yt0=Go!';
- window.location=url;
- }
- function enterpress(e, input){
- var code = (e.keyCode ? e.keyCode : e.which);
- if(code == 13) { //Enter keycode
- SearchContent();
- }
- }
- </script>
- <input id="searchs" class="txt" type="text" name="q" value="Search" onblur="if(this.value == '') { this.value = 'Search'; }" onfocus="if(this.value == 'Search') { this.value = ''; }" onkeypress="enterpress(event, this);" style="width: 180px; height: 18px; float: left;" placeholder="">
- <select id="stype" name="type" style="height:22.5px; float: left; padding:2px 0;">
- <option value="1">Board</option>
- <option value="2">Post</option>
- <option value="3">Member</option>
- </select>
- <input type="submit" value="Go!" name="yt0" style="width:31px; padding:0 2px; height:22px; background-color:#476F97; color:#FFFFFF;" onclick="SearchContent();">
- </div>
- </div>
- </div> </div>
- </div>
- <script type="application/ld+json">
- {
- "@context": "https://schema.org",
- "@type": "WebSite",
- "url": "https://investorshangout.com/",
- "potentialAction": {
- "@type": "SearchAction",
- "target": "https://m.investorshangout.com/search?q={search_term_string}&type=2&yt0=Go!",
- "query-input": "required name=search_term_string"
- }
- }
- </script>
- <script type="application/ld+json">
- {
- "@context": "http://schema.org",
- "@type": "Corporation",
- "name": "Investors Hangout",
- "url": "https://investorshangout.com/",
- "logo": "https://investorshangout.com/images/Investors-Hangout-Stock-Message-Boards-Logo-1-2017.png",
- "contactPoint": [{
- "@type": "ContactPoint",
- "telephone": "+17024183767",
- "contactType": "customer service",
- "areaServed": ["US","CA","GB"],
- "availableLanguage": "English"
- },{
- "@type": "ContactPoint",
- "telephone": "+17024183767",
- "contactType": "technical support",
- "areaServed": ["US","CA","GB"],
- "availableLanguage": "English"
- }],
- "sameAs": [
- "https://www.facebook.com/InvestorsHangout",
- "https://twitter.com/InvestorHangout",
- "https://plus.google.com/104027170639895450527",
- "https://www.youtube.com/user/InvestorsHangout"
- ]
- }
- </script>
- <!-- begin unit -->
- <div align="center" style="padding-top:5px;">
- <div style="min-height:0px;">
- <!-- IMS InvestorsHangout_ROS_RightRail_1 -->
- <div id="InvestorsHangout_ROS_RightRail_1"></div>
- </div>
- </div>
- <!-- end unit -->
- <div style="clear:both"></div>
- <div id="content">
- <!-- begin unit -->
- <div class="subscribe">
- <!-- Structured Data Posts -->
- <script type="application/ld+json">
- {
- "@context": "https://schema.org",
- "@type": "BlogPosting",
- "mainEntityOfPage": {
- "@type": "WebPage",
- "@id": "https://m.investorshangout.com/post/view?id=5815492"
- },
- "headline": "That makes little sense to my wee - SFOR Strikeforce Technologies, Inc. #5815492 - Investors Hangout",
- "image": [
- "https://investorshangout.com/images/Investors-Hangout-Stock-Message-Boards-thumbnail-2015.png"
- ],
- "datePublished": "2020-07-04T22:44:32-04:00",
- "dateModified": "2020-07-04T22:44:32-04:00",
- "author": {
- "@type": "Person",
- "name": "Caruso"
- },
- "publisher": {
- "@type": "Organization",
- "name": "Investors Hangout",
- "logo": {
- "@type": "ImageObject",
- "url": "https://investorshangout.com/images/Investors-Hangout-Stock-Message-Boards-Logo-1-2017.png"
- }
- },
- "description": "That makes little sense to my wee brain."
- }
- </script>
- <!-- Structured Data Posts -->
- <script type="text/javascript">
- function SearchPost(id){
- var board=id;
- var txt = document.getElementById('myText').value;
- if(txt=='') {
- return;
- }
- window.location="/post/goview?id="+board+"&post_no="+txt
- }
- </script>
- <div class="title_report" style="background-color: white; padding:10px; border-width: 4px;border-style: solid;border-color: #d7dce6;margin-top: 6px;margin-bottom: 25px;-moz-border-radius:10px; ">
- <div class="title in-title post_title" style="color:#426E92 ; text-align:center; font-size: 17px; font-weight: bold;">
- <a href="/Strikeforce-Technologies-Inc-SFOR-66604/">Strikeforce Technologies, SFOR</a> </div>
- <script type="text/javascript">
- var addthis_share = addthis_share || {}
- addthis_share = {
- passthrough : {
- twitter: {
- text: "That makes little sense to my wee - SFOR Strikeforce Technologies, Inc. #5815492 - Investors Hangout @investorhangout"
- }
- }
- }
- </script>
- <div align="center" style="padding-bottom:5px;">
- <div style="font-weight:bold; font-size:12px; color:#060;">(Total Views: 285)</div></div>
- <div style="float:right; width:105px;">
- <!-- Go to www.addthis.com/dashboard to customize your tools -->
- <div class="addthis_inline_share_toolbox_1go5"></div>
- </div>
- <div class="pub_date" style="font-size:12px;"> <b>Posted On: 07/04/2020 10:44:32 PM</b> </div>
- <div class="in-post-search">
- Post# <input size='5' type='text' id='myText' name='myText' value=69951> of 76891 <input type="button" class="row" name="GO" value="GO" onclick="SearchPost('66604')">
- </div>
- <div class="prfoilepic">
- <div style="font-size:12px; float:left;"><div class="avatar in-post-image"><img src="/assets/46931549/no_avatar_available_thumb.jpg" alt="" /></div><!-- avatar --></div>
- <div style="font-size:12px; float:left; margin-left:10px;">
- <div class="in-replies">
- </div>
- <div class="author" style="font-size:12px; float:left; "> <b>Posted By:
- <a class="in-no-purple" href="/profile/view?id=47519">Caruso</a> </b> </div>
- <div style="clear:left"></div>
- <div style="font-size:12px; float:left; margin-top:-3px;"> <b>Re:<a class="in-no-purple" href="/profile/view?id=14580" rel="nofollow"> undervaluedstocks</a><a href="/post/view?id=5815491"> #69950</a></b> </div>
- </div>
- </div>
- <div style="clear:both"></div>
- <!-- Mobile Ad Unit Here -->
- <div class="in-post-desc">
- That makes little sense to my wee brain.
- </div>
- <br />
- <div align="center">
- <br />
- <!--Smartad # 4800: Investors Hangout - 300x50 Text - Desktop-->
- <iframe WIDTH="300" HEIGHT="50" SCROLLING="NO" src="//www.dianomi.com/smartads.epl?id=4800" style="width: 100%; height: 50px; border: none; overflow: hidden;"></iframe>
- <br />
- <br />
- <div align="center"><div id="sponsored_ims"></div></div>
- <br />
- <br />
- <br />
- <!--Smartad # 3623: Investors Hangout 4 ad text - right rail - 300x250-->
- <iframe width="300" height="250" scrolling="NO" src="//www.dianomi.com/smartads.epl?id=3623" style="width: 300px; border: none; overflow: hidden;"></iframe></div>
- <br />
- <div class="like in-inline" style="display:inline-block; padding-top:50px; padding-bottom:30px;">
- <img style="padding-left:10px;" src="/images/thumb-up.png"/><span style="color:#475472; padding-left:2px;">(0)</span></div>
- <div class="unlike in-inline" style="display:inline-block;">
- <img style="padding-left:10px; position:relative; top:8px;" src="/images/thumb-down.png"/><span style="color:#475472; padding-left:2px;">(0)</span></div>
- <!-- Post Ad -->
- <div style="clear:both;"></div>
- <div align="right" style="padding-left:90px; height:auto; width:750px;">
- <!--<script src='http://ads.investingchannel.com/cp/InvestorsHangout/50/750.js' type='text/javascript' charset='utf-8'></script>-->
- </div>
- <div style="float:right; padding-top:10px; padding-left:10px; padding-bottom:10px; height:auto; min-height:250px; min-width:300px;">
- <!--<script src='http://ads.investingchannel.com/adtags/InvestorsHangout/equities/300x250.js' type='text/javascript' charset='utf-8'></script>-->
- <!--<a href="https://goo.gl/KAxCd4" target="_new" rel="nofollow"><img src="http://investorshangout.com/adfpage/Investors-Hangout-YouTube-Channel-8-22-2016.png" alt="Investors Hangout YouTube Channel" width="300" height="250" longdesc="http://investorshangout.com/adfpage/Investors-Hangout-YouTube-Channel-8-22-2016.png"></a>-->
- </br></br>
- </div>
- <div style="clear:both;"></div>
- <!-- Post Ad -->
- <div class="in-hr">
- <hr / color="#CCCCCC" style="padding:0px; height:0.5px; margin:0px; padding:0px; border-width:thin;">
- </div>
- <div style="margin-top:10px;">
- <style type="text/css">
- #post_signature_images{
- text-align:center;
- margin:20px auto;
- }
- #post_signature_images a{
- margin:0px 5px;
- display:inline-block;
- text-decoration:none;
- color:black;
- font-size:8px;
- } </style>
- <!--companyinfo-->
- <!--endsignature-->
- </div>
- </div>
- </div>
- <div style="clear:both"></div> <!-- comments -->
- <script type="text/javascript">
- function timedCount()
- {
- document.getElementById('editmsg').innerHTML =parseInt(c);
- //alert(c);
- c=c-1;
- if(c>0) { setTimeout(timedCount,60000); }
- }
- timedCount();
- </script>
- <div class="row in-margin-lt-rt in-pinned-image" style="padding-bottom:45px;">
- <div class="next_post col-sm-6 col-xs-6 text-left in-pad-left">
- <a href="/post/view?id=5815495"><img height="50px" width="60px" src="/images/newer.png"</a>
- </div>
- <div class="previous_post col-sm-6 col-xs-6 text-right in-pad-right">
- <a href="/post/view?id=5815491"><img height="50px" width="60px" src="/images/older.png"</a>
- </div>
- </div>
- </div><!-- content -->
- <div style="clear:both"></div>
- </div>
- <div align="center" class="mobile-footer">
- <!--Footer Ad -->
- <style>
- .footerad2 {
- width: 100%;
- background-color: #FFF;
- color: white;
- text-align: center;
- }
- </style>
- <div class="footerad2">
- <!-- dianomi -->
- <iframe WIDTH="300" HEIGHT="50" SCROLLING="NO" src="//www.dianomi.com/smartads.epl?id=4025" style="width: 100%; height: 50px; border: none; overflow: hidden; margin-bottom:-6px;"></iframe>
- </div>
- <!--Footer Ad-->
- <div align="left" style="mpadding-top:10px; max-width:992px;">
- <div class="bottom_footer" style="">
- <!-- <p style="font-weight:bold; color:#FFF">Investors Hangout</p> -->
- <ul>
- <li class="m_home_foot">
- <p><a href="https://m.investorshangout.com/post/newpost/66604" title="Investors Hangout - Home"><img src="/images/new_post_menu.png"/><span>New Post</span></a></p>
- </li>
- <li class="m_mailbox_foot">
- <p><a href="https://m.investorshangout.com/post/newpost/66604?replyto=5815492" title="Investors Hangout - Public Reply"><img src="/images/public_reply_menu.png"/><span>Public Reply</span></a></p>
- </li>
- <li class="m_board_foot">
- <p><a href="/composemailprivate?to=47519&replyto=5815492"><img src="/images/private_reply_menu.png"/><span>Private Reply</span></a></p>
- </li>
- <li class="m_favorite_foot">
- <p><a href="https://m.investorshangout.com/66604" title="Investors Hangout - Boards"><img src="/images/board_menu.png"/><span>Board</span></a></p>
- </li>
- <li class="m_more_foot">
- <p>
- <a href="javascript:;" title="option-more"><img src="/images/menu_ver.png"/><span>More</span>
- </a>
- </p>
- </li>
- <div style="clear:both;"></div>
- </ul>
- </div>
- <div class="in-more-wrapper">
- <div id="in-more-options" style="display: none">
- <ul>
- <li>
- <a href="https://m.investorshangout.com/post/keep?id=5815492" title="Investors Hangout - Home"><img src="/images/keep_post_menu.png"/><span>Keep Post</span></a>
- </li>
- <li >
- <a href="https://m.investorshangout.com/post/report?id=5815492" title="Investors Hangout - Mailbox"><img src="/images/report_post_menu.png"/><span>Report Post</span></a>
- </li>
- <!-- <li > -->
- <!-- <a href="/board" title="Investors Hangout - Boards"><img src="/images/share_board_menu.png"/><span>Share Post</span></a> -->
- <!-- </li> -->
- <li>
- <a href="https://m.investorshangout.com/" title="Investors Hangout - Home"><img src="/images/home_menu.png"/><span>Home</span></a>
- </li>
- <li >
- <a href="https://m.investorshangout.com/mailbox" title="Investors Hangout - Mailbox"><img src="/images/mailbox_menu.png"/><span>Mailbox</span></a>
- </li>
- <li >
- <a href="https://m.investorshangout.com/board" title="Investors Hangout - Boards"><img src="/images/board_menu.png"/><span>Boards</span></a>
- </li>
- <li >
- <a href="https://m.investorshangout.com/board/favorite" title="Investors Hangout - Favorites"><img src="/images/favorites_menu.png"/><span>Favorites</span></a>
- </li>
- <li >
- <a href="https://m.investorshangout.com/whatshot/activeboard" title="Investors Hangout - Most Active Stock Message Boards"><img src="/images/whats_hot_menu.png"/><span>Whats Hot</span></a>
- </li>
- <li>
- <a href="https://m.investorshangout.com/setting" title="Investors Hangout - Home"><img src="/images/settings_menu.png"/><span>Settings</span></a>
- </li>
- <li>
- <a href="https://m.investorshangout.com/login" title="Investors Hangout - Home"><img src="/images/login-logout_menu.png"/><span>Login</span></a>
- </li>
- <li id="live_site">
- <a href="https://investorshangout.com/post/view?id=5815492"><img src="/images/live_site_menu.png"/><span>Live Site</span></a>
- </li>
- </ul>
- <div class="in-triangle">
- </div>
- </div>
- </div>
- <div class="clear_all"></div>
- </div>
- </div>
- </div></div></div></div>
- <!-- pop register div -->
- <!-- pop register div end -->
- <script>
- $(function() {
- $('#more').click(function(){
- var $yourUl = $("#more");
- $yourUl.css("display", $yourUl.css("display") === 'none' ? 'block' : 'none');
- $("#more").toggle();
- });
- });
- $(function() {
- // $('.popup_form_box .form-control').focus(function() {
- // var ele = $(this);
- // console.log('top',ele.offset().top);
- // $('#TB_window').animate({
- // scrollTop: ele.offset().top - 80
- // }, 800);
- // });
- $('.popup_form_box #YumPopupregisterForm_username').focus(function() {
- var ele = $(this);
- $('#TB_window').animate({
- scrollTop: ele.offset().top
- }, 800);
- });
- $('.popup_form_box #YumProfile_email').focus(function() {
- var ele = $(this);
- $('#TB_window').animate({
- scrollTop: ele.offset().top
- }, 800);
- });
- $('.popup_form_box #YumPopupregisterForm_password').focus(function() {
- var ele = $(this);
- $('#TB_window').animate({
- scrollTop: ele.offset().top + 50
- }, 800);
- });
- $('.popup_form_box #YumUserLogin_username').focus(function() {
- var ele = $(this);
- $('#TB_window').animate({
- scrollTop: ele.offset().top + 120
- }, 800);
- });
- $('.popup_form_box #YumUserLogin_password').focus(function() {
- var ele = $(this);
- $('#TB_window').animate({
- scrollTop: ele.offset().top + 140
- }, 800);
- });
- });
- </script>
- <style type="text/css">
- .popupLogin {
- padding: 0px !important;
- }
- body.popup-scroll {
- overflow: hidden;
- }
- .popup-scroll #TB_window {
- overflow-y: scroll;
- }
- #TB_ajaxContent {
- margin-bottom: 25px;
- }
- </style>
- <!-- GA -->
- <script>
- (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
- (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
- m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
- })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
- ga('create', 'UA-51599320-1', 'auto');
- ga('send', 'pageview');
- </script>
- <script type="text/javascript">
- var _gaq = _gaq || [];
- _gaq.push(['_setAccount', 'UA-37395047-1']);
- _gaq.push(['_trackPageview']);
- (function() {
- var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
- ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
- var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
- })();
- </script>
- <!-- GA -->
- <!-- Begin comScore Tag -->
- <script>
- var _comscore = _comscore || [];
- _comscore.push({ c1: "2", c2: "16807273" });
- (function() {
- var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true;
- s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js";
- el.parentNode.insertBefore(s, el);
- })();
- </script>
- <noscript>
- <img src="http://b.scorecardresearch.com/p?c1=2&c2=16807273&cv=2.0&cj=1" />
- </noscript>
- <!-- End comScore Tag -->
- <!-- Start Alexa Certify Javascript -->
- <script type="text/javascript">
- _atrk_opts = { atrk_acct:"bxypf1aUOO00Wz", domain:"investorshangout.com",dynamic: true};
- (function() { var as = document.createElement('script'); as.type = 'text/javascript'; as.async = true; as.src = "https://d31qbv1cthcecs.cloudfront.net/atrk.js"; var s = document.getElementsByTagName('script')[0];s.parentNode.insertBefore(as, s); })();
- </script>
- <noscript><img src="https://d5nxst8fruw4z.cloudfront.net/atrk.gif?account=bxypf1aUOO00Wz" style="display:none" height="1" width="1" alt="" /></noscript>
- <!-- End Alexa Certify Javascript -->
- <!-- tynt -->
- <script>
- var Tynt=Tynt||[];Tynt.push('du8SD6J_8r4RR6acwqm_6r');
- (function(){var h,s=document.createElement('script');
- s.src=(window.location.protocol==='https:'?
- 'https':'http')+'://cdn.tynt.com/ti.js';
- h=document.getElementsByTagName('script')[0];
- h.parentNode.insertBefore(s,h);})();
- </script>
- <!-- tynt -->
- <!-- Addthis -->
- <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-4fb83d7e14ac1736"></script>
- <!-- Addthis -->
- <!-- IMS Popup -->
- <div id="InvestorsHangout_ROS_Popup"></div>
- <div id="InvestorsHangout_ROS_Interstitial"></div>
- <!-- IMS Popup -->
- </body>
- </html>
- <script type="text/javascript">
- var delay=1000 * 2;
- setTimeout(function(){
- $(document).ready(function(){
- $(this).scrollTop(0);
- });
- },delay);
- </script>
- >>>
Add Comment
Please, Sign In to add comment