Jquery loads only after F5 in IE
- by khushi
I am using Jcrop jQuery to crop image in MVC3 application.
following is my javacript function:
jQuery(function ($) {
$('#imgLab').Jcrop(
{
onChange: showCoords,
onSelect: coordsSelected,
onRelease: clearCoords
}
);
});
Image ID is 'imgLab'.
Image src path is coming from database.
Now this work fine in FF,Safari and Chrome.
but in IE it only works after I press F5.
Can anyone tell me what is wrong in code?
Thanks in Advance.
Khushbu