2
votes
5answers
776 views
How do I fade a div in with jQuery?
I have a div defined as the following in my css file:
#toolbar
{
position:relative;
top: 0;
height: 50px;
background-color: #F4A83D;
…
2
votes
4answers
602 views
Basic AJAX example with ASP.NET MVC?
I'm in the process of making a demo ASP.NET MVC app for educational purposes.
I have an image/link that flags a post as offensive. I would like to request from the server via AJAX to flag …
0
votes
1answer
28 views
How can I convert the result of this postgres db query into json to return to my jquery call?
I'm creating a contest sign-up page for our annual math competition at my school. It requires some AJAX like behavior when you click and select an item in a dropdown list.
I've gotten an ev …
0
votes
3answers
42 views
How do I convert the items of an LI into a json object using jquery?
If I have a list like the following:
<ul class="nameList">
<li value="1">Bob</li>
<li value="2">Frank</li>
<li value="3">Sally</li …
0
votes
4answers
51 views
How do I $.post an array with jQuery so I can use the array in my PHP file?
I have the following piece of jQuery code:
function saveSchedule()
{
var events = [];
$('ul#schedule-list').children().each(function() {
events.push($(thi …
