I'm just wondering what's the best way to implement a threaded conversation like the Facebook Wall where the comments are displayed under each post, and older comments are collapsed and expandable. My instinct is to use a nested datalist, but I think that might take a toll on performance.
...
Hi,
I am looking at creating a page that the user can move around as they please...very similar to iGoogle. But in addition, ideally, I want the user to be able to resize the components.
I've done quite a bit with jQuery in the past am not against the idea of using that, seeing as it already has the draggable and resizable options, tho...
there's a site:
http://joopz.com
you can use a browser to send a receive text messages
do you think it is possible for me to programmatically control and gather data from the browser? this would mean i can make a database of incoming text messages to the browser and i could also programmatically send text messages from the browser>?
...
Hey,
I'm developing an blog using ASP.NET, and I want that the user can be able to add comments.
So I want to implement the idea of facebook on adding comments.
The comment will be stored in the database, so I will be able to load it with the page if the user goes to another web page.
You have any idea how can I do this thing ( Ajax...
So I'm trying to create a C# WCF REST service that is called by jQuery. I've discovered that jQuery requires that AJAX calls are made under the same origin policy. I have a few questions for how I might proceed.
I am already aware of;
1. The hacky solution of JSONP with a server callback
2. The way too much server overhead of having a ...
Hi,
Is there any flash or jQuery headlines slider with images similar to the one used in Gamespot ?
Thanks
...
This is my Html code and I'm trying to pass my id(test1) to fileUp function. It only works when I type 'test1' and stops working when I'm trying to pass a variable. Please let me know if there is a way to overcome this problem.
<a id='test1' href="#" onclick="fileUp(1, 'test1')">Upload Your file</a>
function fileUp(id,nameTest){
va...
Hi, my question is really simple. I have a asp.net button. I can use it to call the simpleModal and have a dialog displayed. Now, I added a label control in the dialog, and would like this label to display some value. What should I do?
Here is my codes
$('#<%= btnOpen.ClientID %>').click(function(e) {
e.preventDefault();
...
Hello,
I am trying to grab a value from a url:
http://localhost:8080/bin/task_status?id=2&cmd=percent_done
I am unsure how to actually do this within a javascript (ajax) command that once the page has been loaded will be called every .5 seconds. It is using the AJAX built in progress bar to display.
...
I'm using the following jQuery code to remove options from a select and it is working well. But instead of it only executing when the theOption2 select is changed I would also like it to work when the page is loaded depending on the selected item that is selected. I tried using the a copy of the script and changing the .change to .load a...
Hello, I want to create a form that has a div with id "captcha". When the user enters a wrong password, following code is generated in "login.php"
$myCaptcha=recaptcha_get_html($publickey, $error);
$xml="<captcha><![CDATA[".$myCaptcha ."]]></captcha>";
echo $xml;
recaptcha_get_html($publickey, $error); generates this:
<script type="t...
Hello Everyone,
I am trying to get my datatable to take a POST JSON output from my server.
This is my client side code:
<script>
$(document).ready(function() {
$('#example').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "http://localhost/staff/jobs/my_jobs",
"fnServerData": f...
Hello,
Could anyone please let me know how to change the folder icon of a jquery tree view on selecting the node item ?
...
I have an HTML table with number values. What i need to do is to get all these values and add them together using jQuery.
Any ideas?
Example table:
http://pastie.org/998759
...
I am trying to load json generated by my django app. It works when I save the json output and load it from a static file. However, when I make a call to a server it returns null.
JSON
{"users": [
{
"id": 1,
"name": "arnold"
},
{
"id": 2,
"name": "frankie"
}
]}
Ajax call
$.ajax({
u...
Hi! My simple donation form submits properly except for Internet Explorer. I'm sure it has to do with issues with change() and focus() or blur(), but all my hundreds of attempts so far have failed me. I tried using .click() instead of change() as mentioned in this post:http://stackoverflow.com/questions/208471/getting-jquery-to-recognise...
Hi everyone!
I have a stack with my work today.
My stack here:
I have a select html element and it has MULTIPLE mode:
<select class="test" MULTIPLE></select>
(MULTIPLE mode also type as : multiple="multiple" i inclue here)
<select class="test" multiple='multiple'></select>
now i only want select this element in many normal select ...
I am using Google Calendar as a storage engine for a calendar system I am building, however, I am using a single Google user account with multiple calendars, i.e. each user on my system has their own calendar within the one user account.
I'm able to create a calendar per user just fine, but I would like to have FullCalendar retrieve the...
I recently saw this code on another post ( http://stackoverflow.com/questions/499126/jquery-set-cursor-position-in-text-area )
new function($) {
$.fn.setCursorPosition = function(pos) {
// function body omitted, not relevant to question
}
} (jQuery);
After too long trying to understand what it was doing I finally figur...
Hi,
i am using tis code for tab navigation.
function hashIt(toHash) {
toHash == ""
? window.location.hash = window.location.hash.replace( /#.*/, "")
: window.location.hash = toHash;
return false;
}
and also i am using jquery popup on page onload. a hyperlink in the popup is not working,
if i remove the hashIt funct...