hello,
I have following code
<div class="img">
<img src="image/1.jpg" class="img_s" style="display:none;" />
<img src="image/2.jpg" class="img_s" style="display:none;" />
<img src="image/3.jpg" class="img_s" style="display:none;" />
<img src="image/4.jpg" class="img_s" style="display:block;" />
<img src="image/5.jpg" class="img_s" styl...
I need to create a range-graded circle proportional map, i.e., a map that has circles overlaying a map the size of which circles indicates the proportional density of what I'm trying to measure. This is best understood by example, and can be seen here: http://www.d.umn.edu/geog/cartfolder/HTML%20Pages/Map-Types.htm. I've tried poking a...
Hello,
I am starting to write a extention for chrome. For this extention I like to add automatically the url on the bar to an text field of my extention. When I click on my extention u popup shows a form with a field. The value must be set to the URL of the page i Visit.
I work normaly with Jquery, and maybe the answer can fit in the...
hey, if i try this code
$(document).ready(function(){
$.ajax({
url: "http://gdata.youtube.com/feeds/api/users/zdf/playlists?v=2",
type: "GET",
success: function(msg){
console.log(msg);
}
});
});
i get this error "XMLHttpRequest cannot load http://gdata.youtube.com/feeds/api/users/zdf...
Here is what I am working on..
http://jsfiddle.net/yfcZN/
what I want is padding of text that is inside of the "P" tag like we do cell padding in "TD" tag
I changed this code line :
text.css({ position: 'absolute', top: '57px' }).hide();
to this:-
text.css({ position: 'absolute', top: '57px', paddingTop: 10px}).hide();
but it's...
I have a process in place which detects if a select box is changed, if it does get changed, the content in a div reloads.
I've realised that when the form is submitted and has errors, the select box should have the option selected prior to submit, selected. If this is the case, the div needs to reload with the correct content.
My curre...
Hey i have a iframe that i am sizing to its content with the following script. I want to show and hide this iframe with two buttons but when its hidden the iframes width and height is not calculated and so when i click the show button it does not show because the width and height are still set to 0.
I am pretty new to jquery and javasc...
Hi,
I'm working on a small project at the moment and have a requirement to re-name/re-index some fields, display items.
Initially, the user is presented with a drop-down with an option to add a new item. If the user adds a new item it will append a new option to select box and give the option a new value (The value of the previous item...
Hi guys,
Here is the scenario. A user wants to change his password. So he login and fill up his new desired password and clicked submit. Back end PHP checks his codes and updated it in MySQL database. User is brought back to the same page (with the form) and is notified by this small paragraph sitting on the top of the page that his pas...
Hello,
I have a little problem, and an need your profesisonal...
So i have two forms in two div. DIV ID=A and DIV ID=B
When a user visit my site, a would like to offer the visitor to choose between the forms. he user see a drop down box, or two radio button, and if select option A then form A load, if B...then B..
But i don't know ho...
Hi,
For some reason when i enter the following dates into the following fields it is returning an invalid date range and i am not sure why:
http://jsfiddle.net/mQRaj/3/
To replicate please enter the following in the 'From' date:
30/11/2009
and then this in the 'To' date:
7/9/2010
Bur if i enter 16/11/2009 and 7/9/2010 it does not ...
Hi,
how can i get all "rt_XX" with jquery each?
I have no idea :/ .. Hope somebody can help me.
$("body").data('conf_pkc', 'normal');
$("body").data('conf_sst', '0');
$("body").data("rt_01", { tw:'k25', title:'Bernd', descr:'man' });
$("body").data("rt_12", { tw:'k115', title:'Hugo', descr:'man' });
$("body").data("rt_55", { tw:'k25', t...
Good morning peoples.
I am mid way through building a very complex application using jquery.
In short modules are loaded into iframes (to keep sandboxing and allow for varying things).
I am having a bit of trouble referencing the jquery object / library in the iframe (from it's parent).
I can write functions that are included in the ...
In brief, I'm looking for a way move complex object graphs between browser code (jQuery) and server code (ASP.NET MVC). JSON does not support object references, so standard serialization of a circular referencing object is not possible out-of-the-box.
A proposed standard for JSON object references is floating about, which is currently ...
hi,
i've just started using the jQuery Tabs plugin, and i'm wondering:
according to the demos, the sstab only works with unique IDs (for the container div
and refering IDs for the panel-divs).
is there a way to avoid using unique IDs and using custom attributes instead?
(eg. "tabName=myTab" -> "tabName=myTab-1")
i'm asking because ...
Using custom jquery to create a stand alone slider and a stand alone accordion with tabs inside. Which are all working. But how do I stop them from opening up when the page loads??!?! This happens in all browsers and it takes about 2 seconds to load up!
http://tinyurl.com/2ehnwca - home page
http://tinyurl.com/2965fav - explore page
Yo...
Hi,
I need to override the defined :last-child style defined in my stylesheet using jQuery.
I'm aiming for minimal markup using a combination of css and jQuery where the structure around "container-content" is appended to the div on document-ready.
<div id="title-some-impact"><!--Vertical container title--></div>
<div class="contai...
Hi,
I am looking for a vertical div content scroller that will paly continues and auto the content of a div. No buttons needed only pause on mouse over.
I have found a nice one but is horizontal http://www.maaki.com/thomas/SmoothDivScroll/
Any suggestion for jquery plugin that achieves the above?
...
I am using fullCalendar and I'm able to populate the calendar with events very easily. And I undertsand the best way to add events to the calendar is through the database. What I need now is to catch and populate an edit event form after the user clicks an event.
How would I do this when I am using asp.net mvc 2?
...
Hi all!
Can someone please advise a good approach to this problem:
On page load, an event handler is added to a page element. For example:
// Javascript
// when page is loaded...
jQuery(document).ready(function) {
// assign this handler to the buttonDiv element...
jQuery("#buttonDiv").click(function() {
// to alert "hello"
...