• Member Avatar for FarrisFahad
    FarrisFahad

    Began Watching jQuery waypoint won't count newly added content

    So I am using jQuery waypoint to get the image id that is viewed on the screen. But I am having problem with content added by AJAX. When I get …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Marked Solved Status for I want to remove space between tags using PHP

    So I want to remove space between tags. The tags are seperated by comma. But I don't want to remove space between words just right after the commas. So this: …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Replied To a Post in I want to remove space between tags using PHP

    Thank you cereal, It worked!!
  • Member Avatar for FarrisFahad
    FarrisFahad

    Created I want to remove space between tags using PHP

    So I want to remove space between tags. The tags are seperated by comma. But I don't want to remove space between words just right after the commas. So this: …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Began Watching I want to remove space between tags using PHP

    So I want to remove space between tags. The tags are seperated by comma. But I don't want to remove space between words just right after the commas. So this: …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Marked Solved Status for I want to build something similar to facebbok post impressions

    I have a pictures website and I want to be able to add impressions to the database when a visitor scroll down the images. Each image viewed equal to 1 …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Replied To a Post in I want to build something similar to facebbok post impressions

    I have found great plugin that works perfectly it's called, waypoint. You can search for it using Google Here is a link to the plugin: http://imakewebthings.com/waypoints/ Just follow the guide …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Created I want to build something similar to facebbok post impressions

    I have a pictures website and I want to be able to add impressions to the database when a visitor scroll down the images. Each image viewed equal to 1 …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Began Watching I want to build something similar to facebbok post impressions

    I have a pictures website and I want to be able to add impressions to the database when a visitor scroll down the images. Each image viewed equal to 1 …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Replied To a Post in Searching for good Facebook log in toturial

    I read through the doc. It didn't help because all they do is the basic stuff. What do you think the best way to learn?
  • Member Avatar for FarrisFahad
    FarrisFahad

    Created Searching for good Facebook log in toturial

    I have searched Google and Youtube for Facebook log in toturials but couldn't find something useful. Do you know any good articles or website or even a Youtube toturial that …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Began Watching Searching for good Facebook log in toturial

    I have searched Google and Youtube for Facebook log in toturials but couldn't find something useful. Do you know any good articles or website or even a Youtube toturial that …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Replied To a Post in How to do something when the window stop loading in jQuery

    Hi gentlemedia, I don't understand. Does `$(window).load()` also triggers when the window stop loading. How does it work?
  • Member Avatar for FarrisFahad
    FarrisFahad

    Created How to do something when the window stop loading in jQuery

    I have this event handler for when the page is loading. It shows a preloader GIF image when the window start loading. $(window).load(function(){ $("#Preloader").css('display','block'); }); But I don't know how …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Began Watching How to do something when the window stop loading in jQuery

    I have this event handler for when the page is loading. It shows a preloader GIF image when the window start loading. $(window).load(function(){ $("#Preloader").css('display','block'); }); But I don't know how …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Marked Solved Status for Infinite scrolling problem using jQuery and ajax. Two questions ...

    I am trying to build a scrolling system for my website. This is what I have com up with ... $.ajaxSetup({ cache: false }); $(window).scroll(function(){ if($(window).scrollTop() == $(document).height() - $(window).height()){ …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Replied To a Post in Infinite scrolling problem using jQuery and ajax. Two questions ...

    I have found the solution. The problem was that the .scroll method loop through $(window).height() part more than once. So all I had to do it this ... <script> $(document).ready(function(){ …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Replied To a Post in Infinite scrolling problem using jQuery and ajax. Two questions ...

    Does anyone have an answer to the second question?
  • Member Avatar for FarrisFahad
    FarrisFahad

    Replied To a Post in Infinite scrolling problem using jQuery and ajax. Two questions ...

    It worked thanks a lot for the help ... For people who want to take a look at the code after fixes, here you go ... $.ajaxSetup({ cache: false }); …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Created Infinite scrolling problem using jQuery and ajax. Two questions ...

    I am trying to build a scrolling system for my website. This is what I have com up with ... $.ajaxSetup({ cache: false }); $(window).scroll(function(){ if($(window).scrollTop() == $(document).height() - $(window).height()){ …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Began Watching Infinite scrolling problem using jQuery and ajax. Two questions ...

    I am trying to build a scrolling system for my website. This is what I have com up with ... $.ajaxSetup({ cache: false }); $(window).scroll(function(){ if($(window).scrollTop() == $(document).height() - $(window).height()){ …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Marked Solved Status for Can someone help me understand PayPal IPN

    Hello, I am trying to understand PayPal IPN proccess. I have built this simple script to test with the IPN simulator in the developer section of PayPal. I have tried …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Replied To a Post in Can someone help me understand PayPal IPN

    For anybody who is still struggling ... Here is what I have understood: 1. The request type which is equal to Notify Validate, which means we want to validate that …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Began Watching How to use variable in MySQL statement

    How can I use a variable in a MySQL select statement? Code: $serverid = $_SESSION['server_id']; $sql = "SELECT * FROM servers WHERE server_id = '$serverid'";
  • Member Avatar for FarrisFahad
    FarrisFahad

    Replied To a Post in How to use variable in MySQL statement

    I ran through the same problem when I was starting out. You need to understand this ... If you want to add a number to the MySQL string just add …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Replied To a Post in What are the steps to integrate a PayPal IPN system in my website

    Thanks a lot cereal.
  • Member Avatar for FarrisFahad
    FarrisFahad

    Created Can someone help me understand PayPal IPN

    Hello, I am trying to understand PayPal IPN proccess. I have built this simple script to test with the IPN simulator in the developer section of PayPal. I have tried …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Began Watching Can someone help me understand PayPal IPN

    Hello, I am trying to understand PayPal IPN proccess. I have built this simple script to test with the IPN simulator in the developer section of PayPal. I have tried …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Marked Solved Status for What are the steps to integrate a PayPal IPN system in my website

    I want to integrate PayPal IPN and payment getaway on my website. I want my website users to be able to sell ad space through my website using PayPal. I …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Replied To a Post in What are the steps to integrate a PayPal IPN system in my website

    Thanks, but I have one more question ... Can I let my users receive money buy replacing business email with their email? If not how can I do that?
  • Member Avatar for FarrisFahad
    FarrisFahad

    Created What are the steps to integrate a PayPal IPN system in my website

    I want to integrate PayPal IPN and payment getaway on my website. I want my website users to be able to sell ad space through my website using PayPal. I …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Began Watching What are the steps to integrate a PayPal IPN system in my website

    I want to integrate PayPal IPN and payment getaway on my website. I want my website users to be able to sell ad space through my website using PayPal. I …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Marked Solved Status for CSS vertical menu problem

    I am trying to learn how to do cool CSS3 menues. I have a good understanding of CSS, but I can't seem to fix this problem. Here is my code …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Replied To a Post in CSS vertical menu problem

    Sorry, I just realized that this is a stupid question. I have solved the problem
  • Member Avatar for FarrisFahad
    FarrisFahad

    Replied To a Post in CSS vertical menu problem

    Don't worry about the Javascript part. I just want to perfect the CSS3 part.
  • Member Avatar for FarrisFahad
    FarrisFahad

    Created CSS vertical menu problem

    I am trying to learn how to do cool CSS3 menues. I have a good understanding of CSS, but I can't seem to fix this problem. Here is my code …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Began Watching CSS vertical menu problem

    I am trying to learn how to do cool CSS3 menues. I have a good understanding of CSS, but I can't seem to fix this problem. Here is my code …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Replied To a Post in How to count valid clicks for an ad?

    There must be a way. How does Google does it with AdSense? Can someone change their IP address repeatedly in a short time, say less than a minute or five?
  • Member Avatar for FarrisFahad
    FarrisFahad

    Created Where to find programming challenges?

    I am looking to develop my skills as a web developer. I want to find new challenges that can help me do that. Do you know any resources that can …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Began Watching Where to find programming challenges?

    I am looking to develop my skills as a web developer. I want to find new challenges that can help me do that. Do you know any resources that can …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Created How to count valid clicks for an ad?

    Hello everyone, I want to build an advertising system like AdSense on my website. I want to count only clicks that are not from the same user. Because I don't …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Began Watching How to count valid clicks for an ad?

    Hello everyone, I want to build an advertising system like AdSense on my website. I want to count only clicks that are not from the same user. Because I don't …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Replied To a Post in upload file and insert file info on database

    To upload a file to a certain directory use the move_uploaded_file() function. Look it up in php.net And to insert a new database record use INSERT INTO database_name (table colums …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Began Watching Passing and reading arguments from Javascript between 2 JSP files

    Hello everyone, I have 2 JSP files, lets call it 1.jsp and 2.jsp. I have a javascript function in my 1.jsp file, that I am calling 2.jsp, and passing one …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Replied To a Post in Passing and reading arguments from Javascript between 2 JSP files

    I think that all you need to do is order you script tags. like wise: <script src='1.jsp'></script> <script src='2.jsp'></script> that way your function and argumants work on the second jsp …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Began Watching upload file and insert file info on database

    I want to upload file using php ajax then insert all the data such as chapter name, lesson name and id on database. How can i do that? pls help …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Replied To a Post in upload file and insert file info on database

    Well first you need to create a form. Then assaign the php page to the action value. Your question is not clear. I can help but you need to add …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Marked Solved Status for CSS Checkbox, small problem

    Hello, I have created a small CSS checkbox and radio buttons. But the problem is that when I check only one, all of them check with that one. So I …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Replied To a Post in CSS Checkbox, small problem

    Hi there, I thank you for your help. I didn't mean the above quotation in a bad way. I just wanted you to check the page because it will be …
  • Member Avatar for FarrisFahad
    FarrisFahad

    Replied To a Post in CSS Checkbox, small problem

    I have created this page specifically for this problem. I think it is better to check the page. But I will post the code if you want to ... CSS: …

The End.