Thursday, 29 August 2013

Prestashop Zopim Chat Free 1.3

Product Description: Prestashop Zopim Chat Free


There are many reasons to use Live Chat. You can use Live Chat to: Increase sales conversion on your website,  Handle customer support on your website, Get feedback from early beta users of your service, Many more, let your imagination run wild! We decided to create module for all store owners based on prestashop engine. With our addon you will be able to install own zopim chat widget with one mouse click! Module is absolutely free and you can download it now.


zopim-free-cover-big


Why to use Zopim? And why via us module?



  •     Zopim module & Our product, customer service and response time set us apart from the rest. We are dedicated to providing you with the best service and support, wherever you are.



  •     We are incessantly preoccupied with delivering products that we are proud of. That means getting every single little detail right – from perfecting each pixel on the widget, to reducing the nano-second delays in message delivery. We are proud artisans.



  •     We never take our eyes away from big issues like reliability, and scalability. This is why our uptime has averaged 99.8% in the past year, and this year we aim to do even better. We are proud engineers.


Geeky facts about Zopim & our module



  •     Work across major browsers ( Internet Explorer 6+, Firefox, Google Chrome, Opera, Safar) and IMs (Gtalk / MSN / Yahoo! Messenger / AIM).



  •     Uptime averaged 99.8%.



  •     New HTML5 dashboard.



  •     iPhone application available.



  •     Android application for beta testers (will be available soon)


 


Download Link



Prestashop Zopim Chat Free 1.3

Thursday, 22 August 2013

jQuery stylish CSS3 image zoomer

In this quick post, I am sharing you a jQuery plugin which uses CSS3 to create stylish image zoomer.


SKDZoom – A jQuery stylish CSS3 image zoomer plugin with lens zoom support. Big image shows in a awesome rounded box beside the thumbnail. It is very light weight and easily customizable image zoomer.


zoomer


 


Download SkdZoom

 


Click here to download SkdZoom



jQuery stylish CSS3 image zoomer

Wednesday, 21 August 2013

jQuery - Page Redirect after X seconds wait

You must have come across any website which uses a webpage with some annoying advertisement and a message that says “You will be redirected to actual page after X seconds”. This can be easily implemented with jQuery. In this post, find jQuery code to redirect user to another webpage after specific time interval or few seconds.


The below jQuery code uses JavaScript setInterval which executes a function, over and over again, at specified time intervals. So all is required is to set the setInterval as 1 second and then minus the counter from actual time interval. When it reach to zero second , simply redirect to specific path.


HTML Code


<h1>You will be redirect to actual page after <span id="spnSeconds">10</span> seconds.</h1>

CSS Code


body {
font-size:12pt;
font-family:Calibri;
}
#spnSeconds {
font-size:25pt;
color:Red;
}

Jquery Code


$(document).ready(function () {
window.setInterval(function () {
var iTimeRemaining = $("#spnSeconds").html();
iTimeRemaining = eval(iTimeRemaining);
if (iTimeRemaining == 0) {
location.href = "http://paceinfonet.org/jquery-page-redirect-after-x-seconds-wait/";
} else {
$("#spnSeconds").html(iTimeRemaining - 1);
}
}, 1000);
});


jQuery - Page Redirect after X seconds wait

Thursday, 15 August 2013

Understanding Model View Controller in Asp.Net MVC

The Model-View-Controller (MVC) pattern was introduced in 1970s. It is a software design pattern that splits an application into three main aspects : Model, View and Controller. Moreover, MVC pattern forces a separation of concerns within an application for example, separating data access logic and business logic from the UI.


asp.net MVC


Model

The Model represents a set of classes that describes the business logic and data. It also defines business rules for how the data can be changed and manipulated.


Moreover, models in Asp.Net MVC, handles the Data Access Layer by using ORM tools like Entity Framework or NHibernate etc. By default, models are stored in the Models folder of the project.


View

The View is responsible for transforming a model or models into UI. The Model is responsible for providing all the required business logic and validation to the view. The view is only responsible for displaying the data, that is received from the controller as the result.


Moreover, views in Asp.Net MVC, handles the UI presentation of data as the result of a request received by a controller. By default, views are stored in the Views folder of the project.


Controller

The Controller is responsible for controlling the application logic and acts as the coordinator between the View and the Model. The Controller receive input from users via the View, then process the user’s data with the help of Model and passing the results back to the View.


Moreover, controllers in Asp.Net MVC, respond to HTTP requests and determine the action to take based upon the content of the incoming request. By default, controllers are stored in the Controllers folder of the project.



Understanding Model View Controller in Asp.Net MVC