Hi all:
This is uni assignment and I have already done some stuff. Please go to the password protected directory on : my server
Enter username "uts" and password "10479475", both without quotes, into the prompt and you shall be able to see the webpage.
Basically, if you hover your mouse on top of the contents in worldmap to the upperl...
Hi There,
I have whole bunch of <div class="productlistname"><a href="#">The Text!</a></div>. What I want to do go through all .productlistname and truncate the text and replace the current text with the truncated version.
Here is what I have so far:
$(".productlistname a").html($(".productlistname a").html().substring(0,10));
This ...
var foot = document.createElement("div");
$('<div class="t"></div><div class="b"></div>').appendTo(foot);
foot.id='foot';
//*****
$(foot,'> .t').mouseover(function(){...})
i want to get the '.t' div element,
but now ,the 'foot' div is not already appenTo the 'document.body' ,
so i can't use thi...
I want to create multilevel accordion Navigation using jQuery , I tried using this script but it not allow the multi-level. Please view the Image what exactly I am looking for,
http://www.i-marco.nl/weblog/jquery-accordion-menu/#
Thanks
...
Hi.. For example i have 5 checkbox, 3 checkbox with name=a[] and 2 checkbox with name=b[], if i checked array a[] 3checkbox iam getting the same value for b[] checkbox even b[] checkbox not checked. please suggest...
For ur reference:
var selectedAItems = new Array();
$("input[@name='a[]']:checked").each(function() {
selectedAItems...
Is it possible to set the height/width of an element in percent using JavaScript or jQuery?
...
Hi all,
I am receiving a different type of error in my application.
In my project most of the functionality are in ajax. Now my prob is if i "ALERT" something i am receiving the output. Else i am not. I am totally confused with this issue and don't have any idea to solve it.
What will be the solution?
Any answers will be helpful and ...
Hello,
I'm creating a J2EE web application that uses jQuery and Ajax to help with some of the presentation for a user-friendly interface. I've done a lot of work ensuring security around persistant login cookies, and I've decided to request the password from any user that logged in using a persistant login cookie before being allowed to...
Hi All,
How to include loader image without usng AJAX controls like Scriptmanager, UpdateProgerss.
Note: Page Getting Load.
Geetha
...
At a website, I found the following code to make a jQuery plugin:
(function($){
// Our code here...
})(jQuery);
I don't understand how the code above works. What I understand is that the code executes immediately because the very last () in function(){}(). So the entire code says that is an anonymous function that is run immediately...
When I look at gmail on my mobile web browser the password textbox hashes the characters as I type so I can see the actual input as I type before is hashed with an asterisk.
So as I enter it becomes, P --> *a --> **s etc..
How is this done? I presume its javascript? If somone can point me in the right direction that would be great.
...
Hello, I am implementing jQuery tabs on mysite, one of the tabs holds a form and this is my problem, the form is loaded in via ajax as it is used multiple time throughout the site. My issue is that when the form is submitted the page leaves the tabbed area, whereas I need to stay within the tabbed system.
Below is the code I am using
...
Hi,
I have a html page with a form.
The form has Div which gets populated dynamically with Input elements like text box,radio,checkbox etc.
Now I want to retrieve the values of these dynamically created elements in the Html page,so that i can submit it to a page.
//HTML PAGE
<script type="text/javascript">
$(function() {
...
i m using struts 2 jquery plugin in my portlet application.Its not working.Is there any other special to do for portlets...please help me...
I kept the struts2 jquery plugin in web-inf/lib and when i am using the struts2 jquery tag it not working properly
For ex:
1. i am using the datepicker tag the image is not displayed
2. When i am u...
A have a ListView that is rendered with multiple items.
Now I want to toggle some HTML attributes with JQuery. Therefore it would be best to have access to these elements via an unique ID.
But trying to create a "dynamic" and therefore unique ID by
<tr runat="server" ID='<%# this.GetUniqueID() %>'>
</tr>
results in an error that tell...
Hi
I've created a map with markers that shows a custom info window when clicked on.
I did that by creating a div as a new GOverlay and placed it in a G_MAP_FLOAT_PANE to make it a google map pane. No problems so far.
The problem im having is that when a put a inputfield inside my custom info window the inputfield isn't selectable!?
...
So I am creating a fading gallery and am a bit of a noob to javascript (but not to programming). I have no idea what is wrong though. Here's the function in question:
/*
*/
function show_next ()
{
// Hide current
$('.s_gallery_images li.s_current').fadeTo(200, .2);
$('.s_gallery_images li.s_cu...
Hello.
I'm new in jqgrid, I'm just trying thes example to work. I have a html file only, nothing more. When I ran this file, array data is not showing. What am I missing here? Thanks in advance.
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jqGrid Demos</title>
<link rel="stylesheet" ty...
myList contains the following values:
value1
value2
value3
function showArray() {
var txt = $("#myList").text();
var textread = txt.split('\n');
var msg = "";
for (var i = 0; i < textread .length; i++) {
msg += i + ": " + textread [i] + "\n";
}
alert(msg);
}
my alert gives me the following:
0:value1
v...
Hi,
General javascript question here, which would also be good to know how(if possible) to do in jquery.
Can you trigger a click event when hovering over an item?
I know there will be people asking why, but please just humour me.
Many thanks,
C
...