Click here to Skip to main content
15,902,198 members

Comments by ravinsit89 (Top 23 by date)

ravinsit89 21-Sep-12 11:56am View    
Hiactually i did it in chrome by using --disable-web-security and getting the respone,
i want to do in firefox also
ravinsit89 16-Sep-12 9:05am View    
Hi sir in my app i have some header and they have their description .on clicking header(label), i want to show description , i used 'hidden ' property but it is not looking good so i want to add Accordion panel in my code.
ravinsit89 16-Sep-12 9:00am View    
i used this code but not able to do that
ravinsit89 16-Sep-12 9:00am View    
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
<html>

<head>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<meta name="viewport" content="initial-scale=1.0,width=device-width,user-scalable=no,target-densitydpi=device-dpi" />

<script src="jquery.min.js" type="text/javascript"></script>
<!--script src="jquery.collapser.js" type="text/javascript"></script-->
<script type="text/javascript">



jQuery(document).ready(function(){
$('.accordion.head').click(function() {
$(this).next().toggle('slow');
return false;
}).next().hide();
});


</script>
</head>
<body>

<div id="accordion">

First header


<div>First content</div>

Second header


<div>Second content</div>
</div>

</body>
</html>
ravinsit89 16-Sep-12 5:49am View    
but not able to complete this question......