This is a little hard to explain, but I have an HTML table, full of SQL definitions, that cross-talk a great deal. For example, one is talking about "INSERT statements", and mentions a "unique key". Another one of the rows talks about unique keys.
I'd like to create little definition bubble (when you hover over "unique key" in the INSER...
Dear all,
I am manipulating german text in jQuery.
Maßnahme
Text
Now I need to Check these text in my switch case
switch(compare){
case 'Text':
alert("Text");break;
case 'Maßnahme':
alert("Welcome");break;
default:;
}
Is ther...
I need to rewrite a classic ASP page such that it will be compatible with Internet Explorer, Firefox and Safari. The current implementation uses a method, replaceAdjacentText to manipulate the DOM. As far as I can tell this method is not supported in any browsers other than Internet Explorer.
What I would like to do is replace the use...
What is the best way to make a tables row a link? I currently am using jquery to zebra stripe the rows and also to highlight the onmouseover/off selected row so if js is the answer please use jquery.
...
I have a simple HTML page that looks like this:
...<div id="main">
<a href="#">Click here!</a>
</div>...
I have a piece of jQuery JavaScript in the header that looks like this:
<script type="text/javascript">
$(document).ready(function() {
DoHello();
});
function DoHello()
{
$("div#main a")....
I have a contact form open in thickbox i want when user click on submit form data submit to my php that will process that data and show sucessfull msg back to thickbox.
php page is called but how i will get form data?
...
I'm having a problem using the jQuery slide animations on elements that are inside a container with a fixed height. I have a page in my application on which there is a large, scrollable div, inside which are contained many smaller divs, each of which represents a 'message' in a user's inbox. Within each message div is a 'delete' button, ...
Hey everyone, I'm working on a widget for Apple's Dashboard and I've run into a problem while trying to get data from my server using jquery's ajax function. Here's my javascript code:
$.getJSON("http://example.com/getData.php?act=data",function(json) {
$("#devMessage").html(json.message)
if(json.version != version) {
$...
I've been trying to find a way to change the window.location.hash to the currently selected tab in [Jquery UI Tabs][1].
I've tried:
$("#tabs > ul").tabs();
$("#tabs > ul").bind("tabsshow", function(event, ui) {
window.location.hash = ui.tab;
})
This results in changing the hash to #undefined when the tab is changed.
I've also tried...
I would like to do a jquery function that when window resize, it search div with css-class name "taskbox" and set the max-height to the parent div height - current offset for the taskbox to be able to be smaller than the available space but do not extend it.
...
Hi there,
I was wondering if its possible for anyone to provide me with a guideline for creating a menu using jQuery that is similar to Telerik's MultiColumn RadMenu (http://demos.telerik.com/aspnet-ajax/menu/examples/multicolumnmenu/defaultcs.aspx). I am desperate to make this work, and I don't want to fork out a pot-load of money for ...
I need to debug a web application that uses jQuery to do some fairly complex and messy DOM manipulation. At one point, some of the events that were bound to particular elements, are not fired and simply stop working.
If I had a capability to edit the application source, I would drill down and add a bunch of Firebug console.log() stateme...
Not exactly sure why this is happening, but upon click of a button I call a JQuery Ajax control, after that I do not want to continue submitting the form, but before the page gets still submitted.
<asp:ImageButton id="btnContinue" OnClick="btnContinue_Click" runat="server" OnClientClick="return false;" />
and the jQuery:
...
I'm trying to add an element to an array only if it doesn't already exist in the array. I used to do this with the Array.include method of mootools, but now I'm using jquery.
Is there a method to do this in jquery?
http://mootools.net/docs/Native/Array#Array:include
...
Hi,
I am trying to make a menu that has many links and each link has its own sublist, this is what i am using..
<body>
<div id="menu">
<a href="#"><li>users <br /></a></li>
<a href="#"><li>product <br /></a></li>
<a href="#"><li>movies <br /></a></li>
<a href="#"><li>clips <br /></a></li>
<a href="#"><li>teaser <br /></a></li...
Hello,
I could really use some help with what I have a feeling will be some pretty basic jquery, but I'm stuck all the same.
I have an unknown (dynamically generated) number of divs in my html each with a class of "page".
What I want to do is add an id to each div.page, and then fill a ul with an id of menu with li for each div.page c...
I have a page that has two tabs created using jQuery, and I am also using Eric Martin's SimpleModal plugin. However when I am in IE7, the SimpleModal overlay is appearing completely opaque, and not the 50% opacity I wanted. If I remove the tabbing, the modals appear just fine. I looked at the overlay style info in IE Dev Toolbar and i...
I'm trying to do a simple ajax update of a div from a php file that gets data from a mysql database. One function populates the div, the other adds messages to the database and is called on click of a submit button. I was wondering if someone could give me their equivalents in jquery. Below are the prototype versions.
<script>
function...
I am using the jQuery plugin Cross Slide. My page is working fine in Chrome and Firefox. But in IE 7, I get:
Debug error as Object expected on line 1:
$(document).ready(function() {
$('#image').crossSlide({sleep:4,fade:1},[{src:'images/1.jpg'},{src:'images/2.jpg'}]);
});
How can I fix bug in IE 8 & 7?
...
Dear all
I am using PHP/JQuery and Javascript. I am testing the javascript in Firefox using firebug. Is there anything similar for IE? I am struggling to get it to look/work the same in IE 7 and 8.
Are there any tools to solve this? Or standards that i need to follow? Any ideas? And also if anyone can suggest a debugger, it would be ...