Posts by user3517672 • 357 points
11 posts
-
3
votes1
answer1618
viewsQ: Disable Space Key
How to lock space key to scroll down page when pressed ? $(document).keydown(function(e) { if (e.keyCode == 32) { return false; } }); This code keeps letting the bar down when pressed space I have…
jqueryasked user3517672 357 -
-6
votes1
answer330
viewsQ: PHP class - How to use
How to use a specific php class ? For example: <?php class Torrent { public function scrape(array $announce = [ ] , $hash_info = null) { $r = [ 'seeders' => 0 , 'leechers' => 0 ]; foreach (…
-
-2
votes1
answer245
viewsQ: Scrap torrent via PHP
I’m doing torrent Scrap, and the script works on the localhost, with xampp server, and on the hostgator server it doesn’t work, someone knows why ? Scrap.php <?php include "httptscraper.php";…
phpasked user3517672 357 -
3
votes2
answers204
viewsQ: How to split a string in PHP?
I need to pick up two items on the link Magnet…
phpasked user3517672 357 -
4
votes3
answers1771
viewsQ: Print html code
How to print html code ? Example: <div id="css"><link rel="stylesheet" href="jquery.css.css"></div> it does not print the link tag, it links another css, want to write this tag pro…
-
0
votes2
answers126
viewsQ: Create Jquery plugin
I am creating a jquery plugin and would like to know how to use the div selected in the plugin to be my variable... : (function ($) { $.fn.plugin = function () { $(document).ready(function () { var…
jqueryasked user3517672 357 -
5
votes1
answer125
viewsQ: How not to display past date records
I made a schedule and I need events that have already passed not appear anymore, dates are with 3 fields DAY/MONTH/YEAR, I am using the Concat and date to join and format the dates, so this is the…
-
9
votes1
answer343
viewsQ: HTML5 video without context menu
How to disable the right mouse button context menu in videos, so the video menuzinho does not appear? $('#nome').contextmenu( function() { return false; }); The above code, but does not work in…
-
-3
votes1
answer204
viewsQ: Number of Seeds in a torrent
How to see the number of Seeds that a Torrent has for PHP? Depends on the tracker? How to do this to us torrents of the Pirate Bay?
phpasked user3517672 357 -
2
votes1
answer216
viewsQ: Torrent link (Magnet) with counter
Hi, you can download Magnet links via php as if it were normal mode? I need to count how many times the file has been downloaded. I tried fopen(), file_get_contents() and header("Location: "), that…
phpasked user3517672 357 -
0
votes2
answers1796
viewsQ: Zoom in with jQuery
Have any plugin that leaves the site the size of the screen? When a site opens in resolution x, it gets that size. For example, when I open the site on TV it gets small and I want it to increase in…