Advertisement
Advertisement
| 06.16.2008 at 11:09AM PDT, ID: 23489091 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: |
$("#login_form").submit(function()
{ $("#msgbox").removeClass().addClass('messagebox').text('Validating....').fadeIn(1000);
//check the username exists or not from ajax
$.post("ajax_login.php",{ user_name:$('#username').val(),password:$('#password').val(),rand:Math.random() } ,function(data)
{
if (jQuery.trim(data) =='yes') //if correct login detail
{
$("#msgbox").fadeTo(200,0.1,function() //start fading the messagebox
{
//add message and change the class of the box and start fading
$(this).html('Logging in.....').addClass('messageboxok').fadeTo(900,1,
function()
{
$("#leftcolumn").load('secure-index.php'); // this does not work -
}); // end function
.......
Here is secure-index.php:
<div class="innertube"></div>
<div class="arrowlistmenu">
<h3 class="menuheader expandable">Parents and Fans</h3>
<ul class="categoryitems">
<li><a id="imp-dates" href="#">Important Dates</a></li>
<li><a id="btn-slide" href="#">Game Schedules</a></li>
.....
</ul>
<h3 class="menuheader expandable">Football Program</h3>
<ul class="categoryitems">
<li><a id="field-nav" href="#">Purchase an Ad</a></li>
<li><a id="field-nav" href="#">Purchase a Player Ad</a></li>
</ul>
<h3 class="menuheader expandable">Admin</h3>
<ul class="categoryitems">
<li><a id="admin_one" href="#">Admin One</a></li>
<li><a id="update_news" href="#">Update News</a></li>
</ul>
</div> <!-- end arrowlistmenu -->
|