JScript experts - HELP needed! Programming Software Development by Ben Martin … :) i'm in the process of converting some vbscript into jscript at work, and not being an expert when it comes…you just use 'for...each'. obviously no such thing in jscript so i went with an enumerator object, iterating through each…fine once you make the changes referred to above. any jscript experts out there able to shed some light on this… Jscript runtime error: Object Expected Hardware and Software Microsoft Windows by silver nekode … have been getting increasingly frequent problems in Win7 throwing a jscript object expected error at almost random times. earlier tonight it…'m getting the error on almost any page that uses jscript or java, and often on pages that I can visit… JScript beginner help Programming Web Development by Kleon I want to writ a jscript code that asks user to type (example) his name and … i have done so far, i am very new on jscript se please somebody can correct me with this. var x… Jscript Replace Function Programming Web Development by none … show me a working example of this being accomplished in Jscript, I would be forever greatful and probably avoid getting fired… jscript and xml Programming Web Development by kosofi last post i tried to read/write data with xls using jscript but cant do it yet but if its possible with xml thats will be fine , any ideas ? Getting a list of JScript functions or objects using C# Programming Software Development by damirin … syntax checking of javascript and html. I am using Microsoft.Jscript reference to help in the checking. Here is the code… so, or if there's a method in the Microsoft.Jscript namespace to do that, did some research on its library… Using jscript to change the content of html Programming Web Development by Valten1992 … one css document, it has no jscript docs. Recently, we learned how to use jscript to set up an image gallery in… How can I search a word in jscript? Programming Web Development by raheleh Hi I need a function with jscript cod that the function can search a word . Re: How can I search a word in jscript? Programming Web Development by tgreer Do you mean JScript, or JavaScript? What does "cod" mean? You are … Data driven web site for xhtml,css, Jscript Digital Media UI / UX Design by sazh … web development, I am developing a site by Xhtml, css, jscript . My site will be a 'Recruitment Site'. What I want… Microsoft JScript runtime error: Object doesn't support this property or method Programming Web Development by niths … this.. so can anyone helpme. this is the error Microsoft JScript runtime error: Object doesn't support this property or method… how to code a jscript similar to fb that clicks the image? Programming Web Development by wildplace how to code a jscript similar to fb that click the image and a layer pop out? i would like to see some example on how it is done. thanks! Jquery flot - jscript runtime error Programming Web Development by jrosh … only happens in IE* Following is the error: "Microsoft JScript runtime error: Unable to get value of the property 'shutdown… Re: JScript experts - HELP needed! Programming Software Development by Ben Martin solved it myself. it was failed type conversion, that for some reason only affects the 'switch' statement. adding the change below now works: [code] while &#40;!oRs.EOF&#41; &#123; var oType = oRs&#40;"type"&#41;.value; switch &#40;oType&#41; &#123; [/code] however, you have to … Re: Jscript runtime error: Object Expected Hardware and Software Microsoft Windows by Biker920 when was the last time you up dated java it is up to version 6-20, download update to desktop go to add/remove programs remove all java entries, reboot,make recovery point, now open update from desktop install update and reboot unit. Later--- Re: JScript beginner help Programming Web Development by AndrisP var x = prompt('enter your name'); alert('hello '+ x); Re: JScript beginner help Programming Web Development by Kleon Thnaks very much and what about the second question can you help me on that. <input type="button" onclick="confirm('Are you sure you want to delete');" value="Display Example" /> Re: JScript beginner help Programming Web Development by AndrisP What is the question? Re: JScript beginner help Programming Web Development by Kleon My next question is how to do a ajax request on a specific URL. and the getting result to be stored in a div tag. sorry about this question i know they are very easy but ia m very new in javascript and ajax Re: JScript beginner help Programming Web Development by JorgeM Ajax is easy to work with natively in JavaScript, but even eaiser if you leverage the jQuery library. Since you are new to JavaScript, I can assume you haven't been exposed to jQuery yet. What you would do is create a JavaScript function that takes care of the Ajax request. Something like this.. function getContent() { var xhr… Re: JScript beginner help Programming Web Development by Kleon Fantastic Sir, thanks a lot, just curious to see how would it be with Jquery, also read some article and with was prefered to do qith jquery, can you show me how to do with jquery this example. Re: JScript beginner help Programming Web Development by JorgeM Its even easier to do with jQuery, but if you are planning to work with web development, its a good idea to really learn JavaScript before working with one or more of the common libraries such as jQuery. Otherwise, you'll spend most of your time searching for snippets here and there rather than writing your own custom code. In any event, here is … Re: JScript beginner help Programming Web Development by Kleon This is what i tried with jquery but for some reason its not working. function getContent(){ $.getJSON('http://oneurl.net/something?callback=?', function(data) <script> $("#getData").click(function () { $("#div-1").load('targetFile.txt'); }); </script> } Re: JScript beginner help Programming Web Development by JorgeM So you are trying to get JSON formatted data? Your example above is not formatted correctly. you have code outside of the <script> tags and are not using the appropriate jQuery methods for JSON. Also, does the page you are retrieving data from have the data in JSON format? Once you retrieve the JSON data, you have to work with the data and… Re: JScript beginner help Programming Web Development by Kleon Sorry about my english first is not my native language, my question is how to make request in a specific URL. example(https://mywebsite.com/Personal/Data). I want to use a Json and if the request is successeded i want that data to be stored inside a div tag called Test. Re: JScript beginner help Programming Web Development by JorgeM Hello Kleon, I've enjoyed helping you this far. At this point the help you are asking for is very generic. Up to now, the code examples that have been provided to you are basic generic snippets of code. What you are asking for now is custom and based upon your vague description, it's to challenging to help you. I'd recommend that if your … Re: Jscript Replace Function Programming Web Development by Paladine I have not tried this myself, but why create the periods as a string, instead make it a CONST Char datatype. Or use the Regex Class to assist. Not sure that helps... Re: Jscript Replace Function Programming Web Development by MojoFilter Scott, The reason you're getting this is because in Regular Expression syntax, '.' matches any single character. To match litteral dots, you need to escape it (\.). So, your search would look like: var rExp = /\./gi Josh Re: jscript and xml Programming Web Development by kosofi hey guys its important to me solving this problem help !!!!!!! Re: Loading Jscript files into Firefox extension Programming Web Development by colon3l Cross-post on StackOverflow if anyone is interested : [URL="http://stackoverflow.com/questions/2840805/loading-jscript-files-into-firefox-extension"]here[/URL]