Hello there,
I'm using uploadify on a page that allows a user to upload images as well as a category field in which to send those images. Now, I see that uploadify provides a "scriptData" method that allows me to send over key value pairs to the uploadify.php script. But the problem is that the scriptData method grabs its values upon pa...
I am using Google Charts to display charting data in my application. Sometimes Google is slow and the charts will take a while to load. This scenario seems to be a common enough pattern -- so I'm wondering what's a good approach to show a temporary image, while the image is delivered from Google. I have access to jQuery -- and have seen ...
How can i turn this:
<? echo json_encode($myArrays); ?>
...into this:
_rowData: [
{ name: "Most Recent", view: "recentView" },
{ name: "Most Popular", view: "popularView" },
{ name: "Staff Picks", view: "staffView" }
],
My script returns that ^, but i dont know how to put the data into the string, _rowData ?
P.S. I am...
how can i toggle a password field to text and password with a checkbox check uncheck
...
Is it possible to use a stored procedure that returns multiple result sets in json format and process them as part of one request using ajax calls in jquery? In other words, I have a stored procedure that returns several result sets that are to be used with a series of select boxes that are all being filtered by the same criteria.
If...
Hi,
I'm building my second serious Rails application and I want to play around with some ajax aswell.
What I would like to achieve is something like this:
Search for a user and click it to add him
-Searchfield
-Live feedback with clickable users
Users added to your project:
John Doe
Bob
Lisa
So when a user is clicked, a div or...
I am new to orkut application development. I just came to know about jQuery and found it very interesting and useful. Is it possible to use jQuery with open-social to develop orkut applications? Please give me a link to some examples too.
...
I'm using Wordpress primarily to host some downloads (icons, to be exact) and I'm wondering if anyone's ever come across a page template for exactly that. Ideally I'd like a grid page where I can easily add and remove downloads to programatically (if possible). I'd like to use jQuery for the visuals.
A Google query of "download page tem...
The issue is now resovled :) Thanks for everyone's help and attention!
I'm getting the JS error "Unexpected call to method or property access" in IE6 intermittently on the line "oAutoCompleteTextBox.focus();". Hopefully, someone has seen this issue before and can provide some insight on how to solve it. Below is the context of the usa...
In the example below, I'm trying to figure out how to hide the fieldset if the text within the tags = Groups
<fieldset class=" collapsible">
<legend class="collapse-processed"><a href="#">Groups</a></legend>
I tried this, but, it winds up hiding all the fieldsets, not just this one...
$(this).find('legend').each( function() {
if...
I am running some JavaScript on my page. Whenever it catches an event that is attached to an anchor <a> element and executes the handler (which I've attached using jQuery) the scroll position resets back to the top of the page. Is there a solution?
...
I'm trying to delete / remove a image from my image list. I'm too tired think straight, so I need some assistance please.
Here is my HTML code:
<li id="listItem_dsc_6436.jpg">
<a href="http://storelocator.com/wp-content/uploads/slgallery/brand/5f/c6/dsc_6436.jpg"><img alt="dsc_6436.jpg" src="http://storelocator.com/wp-content/...
<p id="noteTypebox">
<label for="noteType_2" class="notetypelabel" id="noteType_2" >
<input type="radio" name="noteTypeID" value="2" class="notetype">IDI</input>
</label>
</p>
Given the code above, I would like JQUERY code that Binds to the LABEL, since the INPUT box is hidden (I don't want the radio buttons on the apge).
When a user...
I'm looking for a very simple-to-implement horizontal accordion and was wondering what others are using.
This is the kind of thing I'm looking for.
...
During a document.ready, I call the "load_result" function outlined below:
function load_result()
{
$.getJSON( "http://www.mywebsite.com/loadresult.php", function(data) {
if( data == undefined )
{
null_count++;
return;
}
console.log( data );
insert_result( data );
...
In my code, I have:
$(document).ready(function() {
$.ajaxSetup ({
// Disable caching of AJAX responses */
cache: false
});
//pop_i = setInterval( "load_result()", 1000 );
load_result();
load_f();
});
but it doesn't always load. I know this because load_f() has an alert which doesn't get triggered s...
Hi all,
I am looking for an intuitive js plug in for table rows. Something similar to Sharepoint list view, where when hovering over a table row the row gets highlighted and when clicking the row a context menu appears at a fixed position.
I am developing in ASP.net and prefer jQuery since the plugins are always easy to use.
Thanks i...
I created a jQuery plugin but I have a problem, I use the following code:
Math.floor(Math.random()*500)
I add the result to a element,
but bizarrely the result is every time the same.
If I add a alert() to the line after the random-number-generation,
I get random values, why?
I want to get without the alert() random integers. But how...
when i tried to display the html selected by jquery. i noticed that the code is not standard compliant.
alert($("div").html())
produces
<DIV class=abc></DIV>
it's missing the "s.
Also, is there a shortcut to convert something like that to
<div class="abc"></div>
in c#?
...
Read some other things on here re: this similar problem but am not sure how to apply this to my dilemma.
I have a jquery function that replaces some HTML in a list..
For example, before the function runs:
<ul id="mylist">
<li id="item1">blah blah blah</li>
<li id="item2">blah blah blah</li>
<li id="item3">blah blah blah</li>
</ul>
Th...