I'm having some issues with a jQuery AJAX call. My code works fine when I request a page with no javascript in it, but when I have script tags in my code, things start to get weird.
It seems that any script tags referencing external URLs cause the browser to redirect. In firefox, the page goes blank. In safari, the page clears and loads...
I want to have a table border (which I can set using css, rather than the inline border= attribute) to be set to border: 1px solid black; when I mouseover the table.
How do I go about doing this in jQuery. I think it's identical to what's happening to the buttons at the top of this page (Questions, Tags, Users etc) except that is a div ...
I have some JQuery that takes a while to run and after a few second I get the error:
Stop running this script?
A script on this page is causing internet explorer to run slowley. If it continues to run, your computer may become unresponsive
Is there a way to extend the timeout? I guess that would mean extending the timeout on the person...
Hi, I got a long menubar in my site and it ruins the layout. I'm wondering using jQuery(or one of it's lightweight plugins), how do I hide some of the menu links and have small arrow links that allows to scroll them? Thanks!
...
I've got image tags that look like this:
<img src="/path/to/my/image.jpg" />
But when I access the src bit using jQuery, jQuery gives me back:
http://example.com/path/to/my/image.jpg
This is causing problems in some comparisons I'm doing. I don't want to change my image paths to use absolute URLs.
Any ideas as to how I can either ...
I have a four ASP.NET pages,Page 1.aspx,Page2.aspx,page3.aspx and page4.aspx.Normally the user will come to Page1 and then enter his data in the form elements.On clicking on the Go button Page 2 will come and so on up to page 4.Now i want to Integrate all of these items to A single page using jQuery LightBox/UI dialog modal popup.In my a...
hi all,
I have a small but very vital issue regarding syncronization of execution of onblur and onclick event handler in javascript.
Actually I have a html form containing one text box and one submit button. onblur is put on textbox this handler executes a method called ajexValidation(). Submit button is associated with onclick hndler ...
Is there any good alternative to the html5-element canvas to paint shapes like hexagons using javascript, that works cross-browser (including the horrible IE6)?
I have been using jQuery and jQuery maphighlight for this, but it doesn't give me enough possibilities to manipulate the shapes and colors after it's first rendered.
Am I missi...
Hi,
my first posting on this plattform. Hope someone can give me a hint. I've read some postings about tabs here, but it's not working completely for..
Is it right, that there is no hash sended to the url in jquery "TABS 3" by default ?
I've read that I can send the hash with this to url.. select: function(event,.....
.tabs({
se...
On a HTML page I have an inputbox that has a 'watermark' on it when it is empty. (eg: "enter text here..."). Kind of like this: http://digitalbush.com/projects/watermark-input-plugin/ - but custom written.
The problem is that I can't figure out how to validate this field with the jQuery validation plugin (http://docs.jquery.com/Plugins/...
This is a follow up question to this answer:
http://stackoverflow.com/questions/948610/how-do-i-parse-xml-from-php-that-was-sent-to-the-server-as-text-xml
JavaScript/jQuery:
var xmlDoc = jQuery.createXMLDocument( "<items></items>" );
jQuery( "items", xmlDoc ).append( jQuery( "<item>My item!</item>" ) );
jQuery.ajax({
url: "test.ph...
Hi,
i've built this sample code based on a real problem I have in an application. I've got a custom sort procedure to sort jQuery arrays. A container contains a list of items with special attributes.
For sorting:
Loads all items in temp array
Clears the container
Sorts the temp array into a new array
Append sorted items to containe...
I'm trying to dynamically create and remove items from a list, it
works just fine... sort of, I can remove items, and create items, but
once an item has been created, I cannot remove it again, but I can
remove the items present when the page loads.
Here is my code
<div class="list">
<div class="item">
<input type="text" val...
I have a standard form with a textbox with tinymce invoked. All is well however when I post to my action the FormCollection for that field is blank. I have set ValidateInput to false just in case but still blank. I believe the issue is because I am posting using the jQuery Form plugin.
Thanks
...
Hi,
i have a question in JQuery..I m using $.ajax() in my code (Function 1)to send the fieldname and the sequence number to the ctrller which gets its data by $_POST['name'] and $_POST['sequenceno'] and updates the fieldname in the table with sequence no given..And generates the Preview Display Panel with the inserted fields ..
Now i ...
Hi,
I'm new to JQuery. I'm having a
<div id='field1'> </div>
I'm referring it twice in my code ..But at each time it refers to the same 1st reference.
Eg .. I'm changing the DIV content initially with the value
$("#field1").change(function (){alert('hi')});
After some piece of code inside one another click function I'm havi...
Hi stackoverflow! (first post!)
Ive been trying to get this problem solved, but I cant seem to figure it out without some serious workarounds.
if I have the following html code:
<ul>
<li class="parent"> headertext </li>
<li> text </li>
<li> text </li>
<li> text </li>
<li class="parent"> headertext </li>
<li> text </li>
<li> text </li>...
Another question which has me perplexed:
I have a table which enables users to enter as many rows as they like based on their userid and unique id (auto incremental).
I need to be able to get this information from mysql and place the previously entered information into the fields on the web application (they may need to be edited befor...
What causes this to happen? (the mouse is not being moved or clicked)
...
Hi,
Most of you probaly know Nerddinner.com, and my page is much like that, so let's imagine doing this to Nerddinner.
When editing a dinner, you'll be redirected to Dinners/Edit.aspx, and presented of the partial view DinnerForm.ascx of type DinnerFormViewModel.
What if you wan't this DinnerForm presented in a jQuery UI Dialog?
I'm ...