Hey,
I have my site going here: http://www.treethink.com
I am trying to make it so when a navigation item is clicked, it retracts the news ticker on the right and then doesn't run any of the extracting/timer functions anymore. I got it to retract but it still extracts.
How I am doing it is I am adding a "noTicker" class with the nav ...
EDIT AGAIN ... I'm just a dummy and figured it out!
EDIT: So, it looks like if I highlight everything in the target select box and click "Add selected", it submits... How do I correct that behavior in the code below so that you don't have to click the "Add selected" button to get it to work?
I have a form that includes three select box...
I'm trying to make a custom infowindow. Version = 2.
I have added my DIV to the map as follows -
$("#infoWindowClass").appendTo(map.getPane(G_MAP_MARKER_MOUSE_TARGET_PANE));
The infoWindowClass is -
#infoWindowClass
{
position:absolute;
padding:10px;
height: 155px;
width: 225px;
background-color: #E7F8CD;
...
I have a problem with IE causing two errors:
1. Object doesn't support this property or method
2. Call was rejected by callee.
My Intention:
To call window.opener.myObject method that is going to retrieve some data using ajax and pass in callback function
that live as nested function in popup window that initiated call that is going to...
I've been having some issues setting up a list of items and moving them between each other.
Is it possible to have multiple lists, with a link inside each item to move it to a specified list? i.e. List of actions with a plus next to the action, click the plus and move to a specified box? Furthermore, would it be possible to then load ...
I have absolutely no idea why this is happening but the following code seems to be executed a huge amount of times in all browsers.
$('#save_albums').click(function(){
for(var i = 1; i <= 5; i++){
html = $('#your_albums ol li').eq(i).html();
alert(html);
}
});
Looks fairly innocent to me...
Here's the code in ...
Hey,
My site is here: http://treethink.com
What I have going is a news ticker on the right that is inside a jquery function. The function starts right away and extracts the news ticker and then retracts it as it should. When a navigation it adds a class to the div, which the function then checks for to see if it should stop extracting/...
I have a simple jcrop example and I cant seem to figure out how to move the selection. I thought that it might be the jquery library but i am using v1.3.2 which is what the demo uses. I have used jcrop in another site and everything works fine when i bring it up. I tried setting the "allowMove" option to true but it still doesnt work. Am...
I am trying to write a simple piece of Jquery in which the script will check whether a table cell contains a range of numbers.
I'm unsure how to do this, because if you were to do something like this:
var num_range = ">1";
$("td:contains(" + num_range + ")").css('background-color', '#000');
...the script only detects if the td contai...
Working around an issue where my jquery datepicker does not display after postback within an update panel.
The textbox (trigger) for the calendar is contained within a control, which is contained within an update panel.
I found an article assisting with this issue, and it informed me to do the following
Protected Sub Page_Load(ByVal s...
if i have a dropdown with the following html:
<select id="myDropdown" name="myDropdown">
<option value="6">Six</option>
<option value="5">Five</option>
<option value="3">Three</option>
<option value="1">One</option>
</select>
how can i have this dropdown change to a specific selected value after i click on a button?
...
Hi everyone
I have a problem with my fade with caption in jquery.. my problem is the following The rolling messages on the header run down into the body of the page on IE8.
Please i left here the url.
http://www.aerocom.net.au/index.php?id=contact-us
Thanks in advance
...
I am using jquery load method to update divs , it works great until I test my code under IE6.
The problem is : under IE6 , when I click a button to trigger a load method , the page is remaining unchanged until I move my cursor, that means if I click my mouse and keep my hand away from the mouse , the page is unchanged , if I move the mou...
I'm doing some in browser editing, and I have some content that's on the order of around 20k characters long in a <textarea>.
So it looks something like:
<textarea>
Text 1
Text 2
Text 3
Text 4
[...]
Text 20,000
</textarea>
I'd like to use jquery to trim it down when someone hits a button to chop, but I'm having trouble doing it with...
http://stackoverflow.com/questions/606794/debugging-ajax-code-with-firebug
This question is quite similar, though old and without real answers.
I'm currently putting together an app that has scripts that get loaded in with an ajax request.
An example:
var main = _main.get();
main.load( someurl );
Where someurl is a page that contai...
On my button click, the jQuery dialog appears with just the title and buttons. When you mouseover, then you see the form inputs in front of the dialog covering the buttons. When you scroll down, the form inputs do not move, so you can never see the last few textboxes.
<div id="popupCreateCompany" title="Create a new company">
<form>
...
Hi everyone. I have some table structure:
<tr class="row-2"><tr>
<tr class="row-3">..<tr>
<tr class="row-4">..<tr>
<tr class="row-5">..<tr>
<tr class="row-6">..<tr>
<tr class="row-7"><tr>
<tr class="row-8">..<tr>
<tr class="row-9">..<tr>
<tr class="row-10">..<tr>
<tr class="row-11">..<tr>
...etc
...
I use the following jquery statements and i am getting the error,
jQuery.parseJSON is not a function
my function is,
function Iteratejsondata() {var HfJsonValue = { "Table": [{ "Emp_Id": "3", "Identity_No": "", "Emp_Name": "Jerome", "Address": "Madurai", "Date_Of_Birth": "", "Desig_Name": "Supervisior", "Desig_Description": "Supervisi...
In the below code,the textaraes are generated dynamically ,now how to get these values for validations in valid() function..
<script>
function valid()
{
//get all textarea vales for validation
}
function add(col_det)
{
var row = '<tr>';
row += '<td>';
row += '<textarea rows = "8" cols = "8" class = "input" W...
Hi,
I have a fairly complex html form enhanced via jquery. It has multiple tabs, within each one things like a html form builder, uploads, descriptions.
There is lots of data, and as the user flicks around the various tabs I'm thinking of posting the data to the server. For example, the form builder, has about 10 properties for each fi...