This is a complex problem most people may face. I was working on a dynamic ad generation tool and I have to make an ad script. So that ad script was containing iframe. I was able to render that iframe successfully, but the requirement was passing a dynamic parameter to iframe and… read more →
Hi, I was facing the same issue where I have to use more than 20 columns in my jquery datatable. So I found it’s due to query string length is increasing. To fix it, I increased the size of query string web.config. <system.webServer> <security> <requestFiltering> <requestLimits maxQueryString=”32768″/> </requestFiltering> </security> </system.webServer> It fixed… read more →
Hi, In this article, I’m going to show how I faced that issue and make it work. I was working on a customer project and while implementing the bootstrap datetimepicker If found datetimepicker date was showing some weird date ending with the year 1899 instead of a current year. So I did… read more →
So as I was working on the javascript window.open, I have to override the title as it was taking the default url instead of the title. I did some research as I usually do and found a lot of ways to do this. It was working for a short while but when… read more →
So in the post I’m going to explain the another real word issue I faced while develop a application with google map and twitter bootstrap 3 tabs. So I have two tabs in my application one for picture and another for map. So the image was working fine, But when I click… read more →
I love jquery fullcalendar plugin. But sometime we need to do customizations as per our requirements. So I had a challenge to add a feature to copy last week events to next week on button click. I started work on this and created some logic to copy last week data and move… read more →
As we know we can bind events and resources to a jquery full Calendar. I was able to do this, but I have a drop down filter which refetch the resources and events. While refetch on drop down change it was working fine for the events but the resources every time passing… read more →
Hey friends, I was working on the mobile friendly forms for a paid work. But after the completion of work my client asked me to allow enter to new line in text area when press enter. But I tried jquery script code to put new line on press enter key on the… read more →
I worked a lot on the jquery data table. In one project I had a requirement to make the all rows of the jquery data table click able. So it wasn’t a tough task but I spend some time to make it working. So I decided to share my working code with… read more →
I used jquery full calendar in my one of project and I need to mark line through the past events of full calendar. I found some good ideas from the google, but I need to tweak that ideas and make it as per my requirements. I just added a css class to… read more →