flickering issue with jquery in sharepoint
Hi,
I had flickering issue on sharepoint site when i try to use jQuery. I search lots but none of solution works for me.Few solution are there on some blogs like:-
– http://weblogs.asp.net/wesleybakker/archive/2008/12/29/Eliminate-page-flicker-in-SharePoint.aspx
– alligatortags.com
– developerit.com
– psearch.info/s/irritating-flicker-postbacks-server
as per these above blogs below code solve issue
<meta http-equiv=”Page-Exit” content=”blendTrans(Duration=0.0)” />
but all these does not solve my issue. Finaly i got solution which is mentioned below:-
In sharepoint we start using jQuery or JavaScript like below:-
1 2 3 4 5 6 7 8 | <script type=”text/javascript”> _spBodyOnLoadFunctionNames.push(“RoundCorner”); function RoundCorner() { // all js code will come here $(‘div.graybackground’).corner(“round”); // all js code will come here } </script> |
I add two lines extra in script and replace function as below:-
1 2 3 4 5 6 7 8 9 10 | <script type=”text/javascript”> _spBodyOnLoadFunctionNames.push(“RoundCorner”); function RoundCorner() { $(‘body’).css(‘display’, ‘none’); // all js code will come here $(‘div.graybackground’).corner(“round”); // all js code will come here $(‘body’).css(‘display’, ‘block’); } </script> |
Thanks!
Avinash
February 21, 2012
·
Infoyen ·
No Comments
Tags: flickering issue with jquery in sharepoint, jquery in sharepoint, Moss 2007 Tips & Tricks · Posted in: jquery, MOSS, SharePoint, Tips & Tricks
Leave a Reply