javascript

Sorting a list of items using javascript

Hi all, I am working on a class assignment in which i need to accomplish the following: 1 User types a list of items into a text box (form field) 2 When the user presses the sort button, the list in the text box is sorted 3 It takes the text from the text box and puts the sorted text back in the text box Please help! edit: this is wha...

How can I get the new Facebook Javascript SDK to work in IE8?

I've boiled down my page to the simplest possible thing, and it still doesn't work in IE8. Here's the entire html page: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml" xml:lang="...

vs2010: trying to debug javascript using Chrome: this is not a valid location for a breakpoint

Everytime I try to set a debug point in Javascript, eietehr while in Design mode or while runniong, I get the error: trying to set a breakpoint in javascript: this is not a valid location for a breakpoint When I go to VS2010's Options screen under Debugging Just In Time, I see that Managed, Native & Script are selected, I also plac...

Issue passing the correct item to an other function with setTimeout

Here's my problem: var slide; $$('#slides li').each(function(i, n) { slide = i; setTimeout("initiateSlide()",n * 500) }); function initiateSlide(){ i = slide; alert(i); // pretty much alerts the last one 5 times } I expect to initiateSlide() with 5 different slides, instead I only get the last one ...

How do I return a subset in jQuery plugin?

By default it's like this: $.fn.ellipsis = function() { ... return this.each(function(){ //do some operation on each element here to see if it qualifies } } But now I want to return a subset of all, only those qualify in this.each(function() {}), how to modify the code so that it finally returns only those that qualify? ...

How do I add a expiration date validation to this credit card form

<table border="1"> <tr> <td> <label for="month">Expiration Month</label> <select name="month"> <script language="JavaScript" type="text/javascript"> var month = new Array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sept", "Oct", "Nov", "Dec"); for (var m=0; m<month.length; m++) { document.write("<option>" +month[m]+ "</...

Queue ExternalInterface calls to Flash Object in UpdatePanel - Needs Improvement?

A Flash (actually Flex) object is created on an ASP.Net page within an Update Panel using a modified version of the embedCallAC_FL_RunContent.js script so it can be written in dynamically. It is re-created with this script with each partial postback to that panel. There are also other Update Panels on the page. With some postbacks (...

need to changed markup with jquery

I have the following markup which I do not have direct access to... <a href="javascript:void(0);" onclick="window.open('/BulkDiscounts.asp?ProductID=318&ProductCode=' + escape('LB30X40ES') + '&Orig_Price=22.95', 'Discounts', 'scrollbars,status,resizable,width=330,height=300');"><iimg src="/v/vspfiles/templates/100/images/buttons/btn_qua...

client ip address

How to get client ip address in asp.net. ...

Is it Possible to change the Default Margins of Browser through JavaScript???

I want to change the default margins of Browser through JavaScript because I want to print the displayed document on page but the margins are different on different browser??? plz help me to change default margins of browser. if you have any solution tell me. ...

How can I match on, but exclude a regex pattern?

I have this URL: http://example.com/createSend/step4_1.aspx?cID=876XYZ964D293CF&amp;snap=true&amp;jlkj=kjhkjh&amp; And this regex pattern: cID=[^&]* Which produces this result: cID=87B6XYZ964D293CF How do I REMOVE the "cID="? Thanks ...

Extending JavaScript's Date.parse to allow for DD/MM/YYYY (non-US formatted dates)?

I've come up with this solution to extending JavaScript's Date.parse function to allow for dates formatted in DD/MM/YYYY (rather then the American standard [and default] MM/DD/YYYY): (function() { var fDateParse = Date.parse; Date.parse = function(sDateString) { var a_sLanguage = ['en','en-us'], a_sMatches =...

how to get font color changing script just like mail box??

I need to add a font color changing tool section in my form's text area same as we have in our mail boxes.I tried to find on net but didnt get anything useful.Please tell me how can i implement that font color changing tool on my page using javascript???? ...

Avoid postback on gridview event

1 I've got popup (using javascript) working in a kind of gridview. When you click a button on one grid, it displays a popup window containing another grid of information, based on the row clicked in the first grid. This works well... I've enabled editing in the grid that is popped up. When you click edit though, the popup window disap...

the selector in JavaScript

I want to get the object of this code , <input class="radio" id="conversation_sub_kind_id_208" name="conversation[sub_kind_id]" onclick="set_department_name('department_name208')" type="radio" value="208" /> I want to use jQuery Framework to get the object, like the document.getElementbyTagName("con...

Find out Desktop-Location of a windows Sidebar-Gadget with Javascript

Hello everyone.. I'd like to figure out the location of my gadget via Javascript.... I was thinking about something like System.Gadget.Docked.Document.Location ... but this would show the current URL. What I want to do is: Calling a .exe, passing the current Location (X,Y) as a parameter to show it at the same location. Is there a way...

How to parse XML string value using jQuery?

Hi All, I am new to jquery. I am trying to parse xml string using jquery. I have found one sample: $(function () { $.get('data.xml', function (d) { var data = ""; var startTag = "<table border='1' id='mainTable'><tbody><tr><td style=\"width: 120px\">Name</td><td style=\"width: 120px\">Link</td></tr>"; var en...

Easy Javascript Regex Question

Why doesn't this assign prepClass to the string selectorClass with underscores instead of non alpha chars? What do I need to change it to? var regex = new RegExp("/W/", "g"); var prepClass = selectorClass.replace(regex, "_"); ...

find Image correct width and height

now i get the image's width and height when onload function of img . my problem is, the image original width = 500px but document.getElementId(id).offsetWidth gives only 300px and also for height. Please help me how can i get original width and height of image ...

JS settimeout doesn’t work in IE8…

<html> <head> <script> var i; i = 0; function loop() { i = i + 1; alert(String(i)); setTimeout("loop()",1000); } setTimeout("loop()",1000); </script> </head> <body> </body> </html> Please try the above code in IE8 it will not give alert message for every 1 sec if you hold right click. But...