Recent content by ab320012

  1. A

    Need help with simple javascript code

    Hey if you put this in your function it should create an iframe with the specs you have in the shortcode and append it to the body. if you want something to cover the rest of the screen you're going to need another element (should probably style it better as well), let me know if you need more...
  2. A

    [GET] Javascript POPUNDER script, Monetize your traffic through popups / popunder

    if you have jquery this should be enough $(document).ready(function(){ $(window).click(function () { initPu() }); });
  3. A

    Need help in this pop under java script

    Yes. <div id='popup-container'> </div> <style> #popup-container { position:fixed; bottom: 0px; right:0px; } </style> style tags are used for CSS (which is responsible for style like the position of a popup container). If you script works but is not positioning the popup properly...
  4. A

    CPA active button after visitor finish the offers

    Hi bugeast, I saw your pm unfortunately I can't send one back yet. set an ID to your anchor tag like so: <a href="#" id="popupcaller" onclick="call_locker()" ><img border="0" src=" /></a> in your last offers form submit function call this function...
  5. A

    RE: templatep2p

    Hey does anyone know what happened to templatep2p? Looking for a mirror / invite to a similar site. Sorry if this is a duplicate, Thanks in advanced.
  6. A

    Need help in this pop under java script

    Hi Scariot: css for popup : .popup-container { position:fixed; bottom: 0px; right:0px; } set .popup-container to the class that your popup container is. When it's shown it will appear in the bottom right and stay there independent of scroll.
  7. A

    CPA active button after visitor finish the offers

    Hi bugeast, i am a bit confused as to what you want. if you want to unlock the button after a certain event and the onclick attribute is what locks the button you can set the attribute to empty string with .setAttribute('onclick', '') after a certain user action. Please DM me with more specifics...
  8. A

    Looking for an advice from javascript expert

    Hi there, This will probably be easier. $('a').click(function (e) { e.preventDefault; window.location = "Youreurl" }) not sure how much JS or web development you know but basically e.preventDefault stops from going to the URL that was referenced, window.location sends them to the page...
  9. A

    Hi

    Hi working software engineer and freelance web developer, would like to meet like minded people and get better at SEO.
Back
Top