Need help to grab javascript on site

mikeoo

BANNED
Joined
Nov 3, 2010
Messages
140
Reaction score
2
how to only the javascript who open a javascript box when you click on ads on buysellads.com ? the javascript files its all.js 375k so big need only the javascript code to open the box with detail when you click on ads in homepage.

someone know a program or something who it will only grab the javascript in use ?
 
someone can answer me, if he exist something or not ?
 
Hi mate,

I think you could, hire coder on freelancer dot com or odesk. Or even you could try fiverr dot com. I think that coder could do that simple task for cheap. Maybe some brother from BHW could to that, try to post in the hire freelancer section.

Hope that helps

Cheers
Petko
 
I give 15$ who can make it
 
Not check that script yet (all.js)... What you need is how to send post or get to show up what you click there...
 
give me an example URL and i will get the .js file for you
 
all.js is to big 360K need to take only the javascript inside to do the job.

http://buysellads.com/stuff/all.js?1346423486
 
all.js is to big 360K need to take only the javascript inside to do the job.

http://buysellads.com/stuff/all.js?1346423486
 
mikeoo, I looked at the code for you. It's too intertwined with the rest of their javascript/ajax to be copied and pasted.

Here is the most relevant function. I'm not sure what you're trying to do, but I agree that you should hire a coder to do it.

Code:
function LoadListing(id, medium) {
    var siteid = id.substring(1);
    $('.site-shell').append('<div id="pane-' + siteid + '" class="sitepane"></div>').addClass('open');
    $('#pane-' + siteid).animate({
        width: $('.browse').width() + 20
    }, 500, 'easeOutQuint', function () {
        $.get('/buy/view/id/' + siteid + '/medium/' + (medium || 0) + '/js/1/', function (data) {
            var pane = $('#pane-' + siteid).append(data).css({
                backgroundImage: 'none'
            });
            pane.height(pane.find('.panepad').height());
            if ((pane.height() + 50) > $(window).height()) {
                pane.height($(window).height() - 8).find('.scrollable').height($(window).height() - 200);
            }
            pane.stickyPanel();
            SetupBuy($('body'));
        });
    });
    $(window).trigger('scroll.stickyPanel');
}
 
Last edited:
Back
Top