I'm trying to create tabs on my Content Page, but it does not work for me. I've added the scripts to the Master Page
<script src="Scripts/jquery-2.2.0.min.js" type="text/javascript"></script>
<script src="Scripts/jquery-2.2.0.js" type="text/javascript"></script>
<script src="Scripts/jquery-ui-1.11.4.js" type="text/javascript"></script>
and then trying to add tabs on the Content Page:
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="AddMember.aspx.cs" Inherits="EOSProject.AddMember" %>
<asp:Content ID="Content1" runat="server" contentplaceholderid="MainContent">
<script type="text/javascript">
$(document).ready(function () {
$(" #tabs ").tabs();
});
</script>
<div id="tabs">
<ul>
<li> <a href="#tabs-1"> First Tab </a> </li>
<li> <a href="#tabs-2"> Second Tab </a> </li>
<li> <a href="#tabs-3"> Third Tab </a> </li>
</ul>
<div id="tabs-1">
Tab1
</div>
<div id="tabs-2">
Tab2
</div>
<div id="tabs-3">
Tab3
</div>
</div>
</asp:Content>
is there something missing ?
Thanks in Advance :)
jquery-2.2.0.min.jsandjquery-2.2.0.jsare the same thing.