Our Publications
About Us
Josh Software
Our passion is Ruby On Rails! We are an Indian company who believes that programming is an art.Our portfolio! -- Contact Us
Categories
- Case Studies (1)
- CMS (9)
- Radiant (9)
- General (24)
- Javascript (5)
- Mobile Development (1)
- Sencha (1)
- MongoDB (2)
- Ruby (45)
- Ruby on Rails (117)
- Conferences (14)
- Search (8)
- Tutorials (12)
Authors
Author Archives: sandipransing
Authorize Net (AIM) payment integration with rails
Authorize Net (AIM) method enables internet merchants to accept online payments via credit card. We shall see how to integrate authorize net payment gateway inside a rails app to accept online payments using activemerchant library. Register for authorize net sandbox account … Continue reading
Posted in Ruby on Rails
Leave a comment
Setup Active Scaffold with rails 3 using jQuery
Create new rails project Add active_scaffold gem to bundler Setup active scaffold to use jQuery Generate active scaffold for resource city & zone Add Associations Migrate database Start Server Visit Browser URL: http://localhost:3000/cities Snap
Ghostype input Placeholder for search text fields using jQuery
>Placeholder Demo Ghostpe Demo $(document).ready(function(){ var search = “#home-search”; var chars = $(search).attr(‘placeholder’).split(”); $.each(chars, function(i, v){ setTimeout(function() { $(search).val((chars.slice(0, i+1).join(”))); }, 100*i); }); });jQuery placeholder plugin can be used to display default text inside input text fields.HTML5 introduced type search … Continue reading
