If you remember, I was trying to get quicksand working and someone help me with doing a short jQuery code to do the same thing. Well, everything is working great with just doing one menu but now. I would like to add on to it so that their is a second option for the user to select. I provided the link to My Example. I don't know how to right the code in jQuery so that the user can also sort the list in to Interior or Exterior like they did in the Redbox movie list. I don't think it would be really hard for someone that knows jQuery to quickly right the code for me. I'm more of a front-end web designer and then a back-end one.
I put the code below but not all of the product DIV code because it's mostly the same thing just the li class and h1 is different.
A McDonald's restaurant uses about 1.5 to 2 million gallons of water per year for operations like food preparation, cleaning, and restrooms. That is a lot less than the 2,083 gallons of water per megawatt hour mentioned above.
Turbo Pascal
Original authorAnders Hejlsberg (at Borland)
DeveloperBorland
Release20 November 1983; 42 years ago[1][2]
Operating systemCP/M, CP/M-86, MS-DOS, Windows 3.x, Classic Mac OS
PlatformZ80, x86, 68000, PC-98
https://en.wikipedia.org/wiki/Turbo_Pascal
It was the one language I actually learned to program in. I wasn't very good at it and never used it at work.
If anyone has any personal Turbo Pascal stories or personal accomplishments using it, please take a moment to share. Thanks. Peace
Underpowered and overpriced, both separately and together.
This is to be taken as a "1st gen" (Linux+Proton based), and to wait for the 2nd gen that hopefully is a bit better value/balanced. Or wait for a sale.
The Korean company said that UFS 5.0 integrates the latest embedded memory interface standard from JEDEC and achieves up to 10.8 gigabytes per second (GB/s) transfer speeds. Regarding write speeds, Samsung UFS 5.0 can reach 9.5 GB/s.
ISTM that those are pretty fast speeds for local mobile storage.
Question
ACTIONpack
http://www.romabio.com/products/preview.html <--- My Example /
http://www.redbox.com/movies <--- What I'm trying to do /
https://www.neowin.net/forum/topic/1131050-jquery-quicksand/ <--- First post about this /
If you remember, I was trying to get quicksand working and someone help me with doing a short jQuery code to do the same thing. Well, everything is working great with just doing one menu but now. I would like to add on to it so that their is a second option for the user to select. I provided the link to My Example. I don't know how to right the code in jQuery so that the user can also sort the list in to Interior or Exterior like they did in the Redbox movie list. I don't think it would be really hard for someone that knows jQuery to quickly right the code for me. I'm more of a front-end web designer and then a back-end one.
I put the code below but not all of the product DIV code because it's mostly the same thing just the li class and h1 is different.
<script type="text/javascript">
$('.filter li a').click(function() {
$(this).css('outline','none');
$('.filter .current').removeClass('current');
$(this).parent().addClass('current');
var filter = $(this).text();
if(filter == 'All Products') {
$('.items li.hidden').fadeIn('normal').removeClass('hidden');
} else {
$('.items li').each(function() {
if(!$(this).hasClass(filter)) {
$(this).fadeOut('normal').addClass('hidden');
} else {
$(this).fadeIn('normal').removeClass('hidden');
}
});
}
return false;
});
</script>
[/CODE]
Link to comment
https://www.neowin.net/forum/topic/1132088-2nd-menu-option-with-jquery/Share on other sites
7 answers to this question
Recommended Posts