jquery

Jquery and UpdatePanel

I have used Jquery for rounded corners (DIV) and i have a updatepanel which contains a datalist which contains som images and a delete link. When i click on delete link it fires delete command and it deletes the image.(asynchronouse postback). the problem is when I click the delete button my div:s has no rounded corners anymore. ...

problem in ajax modal pop control when used with an custom control

<style type="text/css"> TR.updated TD { background-color:yellow; } .modalBackground { background-color:Gray; filter:alpha(opacity=70); opacity:0.7; } </style> i am using ajax modal pop control. and i am using JQuery Check box control...

What is the best way to cut the file name from 'href' attribute of an 'a' element using jQuery?

For example I've got the simple code: <ul class="list"> <li><a href="http://www.aaa.com/bbb/ccc/file01.pdf"&gt;Download file 01</a></li> <li><a href="http://www.bbb.com/ccc/ddd/file02.pdf"&gt;Download file 02</a></li> </ul> and I wish to store in variables only the file names: file01.pdf and file02.pdf, how can I cut them? Many t...

jQuery : find and wrap textnode with some element

my HTML code : <body>Firebrand will tend to burn any bricks out there. so the best idea is to ignore any active firebrand if you are a bricks. Otherwise, you can challenge a firebrand if you have the proper quality to keep up with their latest technology. And don't mess up with firebrand if you are a robber.</body> I want to find any ...

jQuery check to see if javascript is processing

I have many jquery methods invokiing different script services and then rendering the data as html. How do I display a "processing .." indicator that deterministically says that something is happening behind the curtains? I have thought about dislpaying and hiding an indicator during getJSOn calls, but there seems to be so many differen...

jQuery use child click/attribute in parent

Why this does not work in IE/Chrome but works in FF/Opera? I want to make the div around anchor clickable, so that when you click div, it behaves the same as if you would click the anchor itself. <script src="jquery-1.3.2.min.js" type="text/javascript"></script> <script type="text/javascript"> function bindOnClickPostBack() { $("....

Open link after script is done with jquery

Hi. I'm trying to make a jquery script that makes the page fade out before leaving it. can anyone help? ...

jQuery unexpected sortable behaviour

Hi all, I'm working on a project where I can generate Word documents, one of the functionalities is to define a table of contents. I want my TOC to be a sortable jQuery list for sorting the chapters. I'm retreving the data recursivly from a MySQL table, which functions as expected. Since I found there are some strange behaviors in IE7 ...

jquery replace part of a url

I know practically nothing about jquery so please help me I try this function googlemapLinks { $('div.gmnoprint a').attr("href").replace('ll','q'); } it does not work I have a <div class="gmnoprint"> In that div Google maps puts a javascript link in maps.google.com/maps?ll=5..... I need maps.google.com/maps?q=5..... Can you show m...

How to show/hide gif image when button click in asp.net

Hi, I have a asp page where i have a button.When i click on the button i should display a gif image.When the process is completed ,again the images has to be hidden. Please find my below code behind <head runat="server"> <title>Untitled Page</title> <script type="text/javascript" language="javascript"> </script> </head>...

Track a click on a flash movie (object / embed) with jQuery

I am making a dynamic banner system which can handle img banners, as well as flash banners done with object/embed. The entire site makes heavy use of jQuery, including handling the 'click' events. This obviously isn't a problem when it comes to tracking the clicks on the image itself (i track the click on the parent DIV tag. However, i...

Can I combine the .load function with fadeIn in jQuery?

I am using the .load function to load in another page using jQuery. Here is my code: $('#page1').click(function(){ $("#content").load("page1.html"); }); It's working great, but I would like to fade in the new page. Is there anyway I can combine the load and fadeIn function? I attempted it, but it's not working. Here is my...

Web Application with jQuery, deployed to WS 2003 and IE not working.

I have been developing a web application on XP and FF (with occasional IE checks through IE 8), but today when I deployed it to a WS 2003 site, running IE 7, my jQuery code to dynamically size divs doesn't execute, and even stating explicit div sizes (e.g. "width: 95%") doesn't seem to work. I'm doing this via VPN and Remote Desktop, an...

problem with jquery slide show

Basically I have different images for different months in the year, what I'm trying to do is to click on a certain month and have a slide show of the images related to that month on top of the page, link text(this is for testing purposes), but the problem is that when I click on first month (Jan) I get images of the next month in the sl...

Jquery get all input values and create an array (with names)

Hay guys, I'm doing some work where i have a large collection of forms. Seems these aren't 'posted' the traditional way (i.e using a submit button). I need a way to collect all the names and values of all form data when clicking a link (document.location is then used for redirects). I want names to stay intact so that i can used a simpl...

Eric Martin's SimpleModal and Flv Player

Am I able to embed a flash player in an Eric Martin jquery simple modal? ...

mouseenter leave cause flicker in jQuery

The below code works but on mouse enter causes flicker $("#helptext").bind("mouseenter",function(){ $("p:first",this).text("helptext."); }).bind("mouseleave",function(){ $("p:first",this).text(""); }); The below code does not work /* $("helptext").mouseout(function(){ $("p:firs...

jquery: odd/even row elements + hover

hi, i'm styling a table with this command: $("tr").filter(":odd").addClass("odd"); works nice. now i'm having a hover function which would show a cursor when i move the cursor over a row. the problem: on hover-out i want the table row getting back its "odd" class again, in order to keep the 2-colored layout. unfortunately it doesnt ...

how to put multiple jquery dataTables in one page?

I want to use jquery dataTables to show something. It works well when i just put one dataTable in one page, Then i add one more, but they occupied almost the same position, and one of them doesn't work well. Do you know how to deal with that? ...

jQuery: match an element by searching for style="font-size: 70%"?

How can I match all a-tags which have a font-size of 70%? <a href="/tag/customersproducts" style="font-size: 70%; text-decoration: none;">customersproducts</a> <a href="/tag/dealers" style="font-size: 70%; text-decoration: none;">dealers</a> <a href="/tag/dealershops" style="font-size: 101%; text-decoration: none;">dealershops</a> <a...