0
votes
How to display the progress of a server script in jQuery?
I'm not down with the specifics for jQuery, but a general answer that doesn't involve polling wold be: Use a variation of the …
0
votes
outerHeight() and inner pictures
Where is your javascript being called from? Unless you set a height on your image, you'll have issues if you're putting it in $(...) (the shorthand for $(document).ready). Try putting …
1
vote
Forcing page content to change through Javascript
Yep, there is, but it is kind of complicated. The only way I've found is using an iframe on the client, and response.writeing on the server to send blocks of javascript back to the client, that jav …
1
vote
Mouse Over/Mouse Out on DIV
Simple solution would be to use the jQuery height method, but that might mess up your layout unless you're carefull with the HTML that …
0
votes
Stuck reloading ajax content in a jQuery Tab programatically.
To get the script executed, you have to make sure the ajax requests's data type is "html" - see $.ajax options. To do th …
2
votes
jquery ajax and html
According to the doco, if you use $.ajax and specify a data type of "html", included script ta …
0
votes
2
votes
user-friendly time entry
What I tend to do for date and/or time fields is let the user enter it in whatever format they like, then format it back to a "universal" particular format on blur of the field. …
0
votes
an array of strings as a jQuery selector?
Use the array.join method to join them together
$(theArray.join(','));
…
3
votes
get $.ajax response
You can do it with an async request, but it's generally a Bad Thing
Something like the following oughta return the data.
function Profiles( …
2
votes
Jquery Effect Onunload
As far as I know, the only way to stop a user from leaving a page is the onbeforeunload event, which isn't cancelable. Instead, you return a string from that method, the browser pr …
0
votes
Post using JQuery to ASP.NET MVC [Authenticate]-wrapped action.
I don't know if there's a more official answer, but can you $.get('NiceController/AmILoggedIn') first? Then, depending on the response in there, $.post or do some kind of …
5
votes
How to verify an element exists in the DOM using jQuery?
$ returns an array of matching elements, so check the length property and you're good to go
if ($('#lblUpdateStatus').length) {
$("#lblUpdateStatus").text("");
}
…
5
votes
What is the consequence of this bit of javascript?
I'm guessing the ; is to ensure that javascript packers won't mess up the line, but that's the best I have.
The logical or is there to make sure that jQuery.ui doe …
1
vote
iFrame Validation
Prompting a User to Save When Leaving a Page. This 4guys article sounds like what you need. It talks about the onbe …
