User Josh - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T05:33:21Zhttp://stackoverflow.com/feeds/user/123234http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1612587/css-adjacent-sibling-selectors-ie8-problem/1612629#16126290Answer by Josh for CSS adjacent sibling selectors - IE8 problem.Josh2009-10-23T10:39:33Z2009-10-23T10:39:33Z<p>would it be simpler to add the hover on the li element and fix the hover for ie using this <a href="http://www.xs4all.nl/~peterned/csshover.html" rel="nofollow">http://www.xs4all.nl/~peterned/csshover.html</a></p>
<p>ie</p>
<pre><code>#MainMenu li.Sel ul li.HasSub:hover {
display: block;
}
</code></pre>
<p>Hope that helps</p>
<p>Josh</p>
http://stackoverflow.com/questions/1110511/custom-event-for-height-change-as30Custom Event for height change AS3Josh2009-07-10T16:13:13Z2009-10-15T01:33:14Z
<p>how can i add an event listener to detect when the height of a DisplayObject changes.</p>
<p>i have a holding Sprite with a border that needs to resize when any object inside changes height or is added.</p>
<p>thanks.</p>
<p>Josh</p>
http://stackoverflow.com/questions/1551635/3d-maths-in-flash-as303d maths in Flash AS3Josh2009-10-11T20:08:17Z2009-10-12T09:28:48Z
<p>I'm trying to code a 3d wall like
<a href="http://www.flashloaded.com/flashcomponents/3dwall/" rel="nofollow">http://www.flashloaded.com/flashcomponents/3dwall/</a></p>
<p>The shape I am looking to create is like a bath or arena where it is a curve cornered rectangle with sloping sides.</p>
<p>The image below shows what i'm trying to achieve if viewed from above. I hope that helps.</p>
<p><img src="http://i37.tinypic.com/6egcjb.jpg" alt="alt text" /></p>
<p>Can anyone give me some ideas on the maths to create this shape using primitive rectangle shapes.</p>
<p>Thanks,
Josh</p>
http://stackoverflow.com/questions/1024564/standalone-asp-net-page1standalone asp.net pageJosh2009-06-21T19:18:12Z2009-10-06T19:02:06Z
<p>i want to test my web hosts asp.net capabilities - equivalent to a 'phpinfo' page - is there a standalone aspx page I can upload to test that asp.net is correctly running and what version etc it is running.</p>
<p>Thanks,
Josh</p>
http://stackoverflow.com/questions/1323196/does-the-order-of-javascript-matter-in-a-page/1323231#13232310Answer by Josh for Does the order of javascript matter in a page?Josh2009-08-24T15:58:32Z2009-08-24T15:58:32Z<p>you can set your variable value in any part of the page but it would be easier to declare them at the top of the page before your function code.</p>
<p>Josh</p>
http://stackoverflow.com/questions/1085825/can-i-track-an-iframe-widget-with-google-analytics/1277465#12774651Answer by Josh for Can I track an IFRAME widget with Google Analytics?Josh2009-08-14T11:51:54Z2009-08-14T11:51:54Z<p>you should be able to track from your iframe as it would appear to google analytics as a regular page. your issue would be knowing what iframe you were tracking. if you can pass a unique id via the iframe url then you should be able to add a custom parameter to track the different sites.</p>
<p>eg</p>
<pre><code><iframe src="SOURCE_PATH?uniquetrackingid=123" frameborder="0" width="300px"
height="150px" scrolling="no" id="cd_frame"></iframe>
</code></pre>
<p>information about custom tracking codes can be found here
<a href="http://www.google.com/support/analytics/bin/answer.py?hl=en&answer=55585" rel="nofollow">http://www.google.com/support/analytics/bin/answer.py?hl=en&answer=55585</a></p>
http://stackoverflow.com/questions/1264773/rewrite-a-folder-name-using-htaccess/1264813#12648131Answer by Josh for rewrite a folder name using .htaccessJosh2009-08-12T07:50:10Z2009-08-12T08:47:51Z<p>try:</p>
<pre><code>RewriteRule ^/apple(.*)?$ /folder1$1 [NC]
</code></pre>
<p>Where the folder you want to appear in the url is in the first part of the statement - this is what it will match against and the second part 'rewrites' it to your existing folder. the [NC] flag means that it will ignore case differences eg Apple/ will still forward.</p>
<p>See here for a tutorial: <a href="http://www.sitepoint.com/article/guide-url-rewriting/" rel="nofollow">http://www.sitepoint.com/article/guide-url-rewriting/</a></p>
<p>There is also a nice test utility for windows you can download from here:
<a href="http://www.helicontech.com/download/rxtest.zip" rel="nofollow">http://www.helicontech.com/download/rxtest.zip</a>
<strong>Just to note for the tester you need to leave out the domain name - so the test would be against /folder1/login.php</strong></p>
<p>to redirect from /folder1 to /apple try this:</p>
<pre><code>RewriteRule ^/folder1(.*)?$ /apple$1 [R]
</code></pre>
<p>to redirect and then rewrite just combine the above in the htaccess file:</p>
<pre><code>RewriteRule ^/folder1(.*)?$ /apple$1 [R]
RewriteRule ^/apple(.*)?$ /folder1$1 [NC]
</code></pre>
http://stackoverflow.com/questions/1264820/parsing-xml-and-insert-data-in-mysql-table/1264867#12648670Answer by Josh for parsing xml and insert data in mysql tableJosh2009-08-12T08:09:26Z2009-08-12T08:09:26Z<p>i'm not sure if it is more efficient to set the xpath to a variable before starting you loop. </p>
<p>eg</p>
<pre><code>$productsxml = $xml->xpath('//product')
foreach($productsxml as $products)
</code></pre>
<p>you could also use xslt to create a statement like @Greg has suggested and execute it at once.</p>
http://stackoverflow.com/questions/1264703/need-help-with-recaptcha-keep-getting-incorrect-captcha-sol/1264782#12647820Answer by Josh for Need help with reCAPTCHA - keep getting incorrect-captcha-solJosh2009-08-12T07:43:13Z2009-08-12T07:43:13Z<p>if you are posting the check twice - eg once from javascript and once via php the second one will fail as the API only allows a solution to return valid once.</p>
<p>Hope that helps,
Josh</p>
http://stackoverflow.com/questions/1170730/group-rollover-effects-with-actionscript30group rollover effects with actionscript3Josh2009-07-23T09:54:43Z2009-08-10T09:24:55Z
<p>I've got the following issue with a actionscript3 project.</p>
<p>I have a group of buttons setup via a class sitting in a holder sprite.</p>
<p>When I rollover one of these buttons I loop through all the buttons in the holder and run tweenlite to tween the alpha to .4 except when the name matches the currently active button.</p>
<p>When I rollout I reset all the buttons back to alpha 1 again via a tweenlite tween.</p>
<p>This works fine in most of the time. the issues i have are as follows:</p>
<ul>
<li>when i roll from one button straight to another there is a lot of flickering</li>
<li>sometimes when i roll to another button it fades in then out again</li>
<li>i have a case when instead of returning all the buttons to alpha 1 i need to return them to an initial state alpha.</li>
</ul>
<p>i have tried using tweengroup but this doesn't seem to help either.</p>
<p>let me know if you need any more details. the code is intergrated into a lot of other stuff which is why i haven't posted it but if needed i can put something together.</p>
<p>thanks.</p>
<p>Josh</p>
http://stackoverflow.com/questions/1178713/java-equivalent-of-swfobject3java equivalent of swfobjectJosh2009-07-24T16:23:36Z2009-07-26T21:52:30Z
<p>looking for a javascript class like swfobject to embed java and have a simple fallback if the user doesn't have java or refuses the security prompt.</p>
<p>thanks,</p>
<p>Josh</p>
http://stackoverflow.com/questions/1178475/looking-for-a-free-java-ide0looking for a free java ideJosh2009-07-24T15:17:42Z2009-07-24T20:08:01Z
<p>just looking to start programming in Java. I'm on a windows platform and currently use Visual Studio 2008 for ASP.Net programming and FlashDevelop for ActionScript.</p>
<p>i'm looking for a free IDE which has the following:</p>
<ul>
<li>Compile / Test from IDE</li>
<li>Runs on Windows (Vista)</li>
<li>Is free!</li>
<li>Has intellisense / autocompletion</li>
</ul>
<p>Thanks,
Josh</p>
http://stackoverflow.com/questions/159554/string-format-like-functionality-in-t-sql/1153194#11531942Answer by Josh for String.Format like functionality in T-SQL?Josh2009-07-20T12:10:06Z2009-07-20T12:19:08Z<p>take a look at <a href="http://doc.ddart.net/mssql/sql70/xp%5Faa-sz%5F12.htm" rel="nofollow">xp_sprintf</a>. example below.</p>
<pre><code>DECLARE @ret_string varchar (255)
EXEC xp_sprintf @ret_string OUTPUT,
'INSERT INTO %s VALUES (%s, %s)', 'table1', '1', '2'
PRINT @ret_string
</code></pre>
<p>Result looks like this:</p>
<pre><code>INSERT INTO table1 VALUES (1, 2)
</code></pre>
<p><hr /></p>
<p>Just found an issue with the max size of the string with this so there is an <a href="http://www.sqlteam.com/forums/topic.asp?TOPIC%5FID=65584" rel="nofollow">alternative function</a> you can use:</p>
<pre><code>create function dbo.fnSprintf (@s varchar(MAX),
@params varchar(MAX), @separator char(1) = ',')
returns varchar(MAX)
as
begin
declare @p varchar(MAX)
declare @paramlen int
set @params = @params + @separator
set @paramlen = len(@params)
while not @params = ''
begin
set @p = left(@params+@separator, charindex(@separator, @params)-1)
set @s = STUFF(@s, charindex('%s', @s), 2, @p)
set @params = substring(@params, len(@p)+2, @paramlen)
end
return @s
end
</code></pre>
<p>To get the same result as above you call the function as follows:</p>
<pre><code>print dbo.fnSprintf('INSERT INTO %s VALUES (%s, %s)', 'table1,1,2', default)
</code></pre>
http://stackoverflow.com/questions/1140402/how-to-add-jquery-in-js-file/1140437#11404370Answer by Josh for how to add jquery in JS fileJosh2009-07-16T21:31:04Z2009-07-16T21:31:04Z<p>just copy the code from the two files into your file at the top.</p>
<p>or use something like this <a href="http://code.google.com/p/minify/" rel="nofollow">http://code.google.com/p/minify/</a> to combine your files dynamically.</p>
<p>Josh</p>
http://stackoverflow.com/questions/1135672/what-is-the-best-method-to-detect-xml-in-javascript0What is the best method to detect xml in JavaScriptJosh2009-07-16T06:05:05Z2009-07-16T10:21:28Z
<p>What is the best method to detect xml in JavaScript</p>
<p>e.g. is it possible to detect the mime type of a document - particularly if it is text/xml in JavaScript. </p>
<p>this needs to work in Chrome.</p>
<p>thanks,</p>
<p>Josh</p>
http://stackoverflow.com/questions/1131085/removing-duplicate-records/1131108#11311081Answer by Josh for Removing duplicate records.Josh2009-07-15T12:30:18Z2009-07-15T12:30:18Z<p>try this (example will return the highest date in the group):</p>
<pre><code>SELECT SS.sightseeingId,
SS.SightseeingName,
SS.displayPrice,
MAX(SST.fromDate)
FROM tblSightseeings SS
INNER JOIN tblSightseeingTours SST
ON SS.sightseeingId = SST.sightseeingId
WHERE SS.isActive = 1 and SS.isDisplayOnMainPage = 1
GROUP BY SS.sightseeingId,
SS.SightseeingName,
SS.displayPrice
</code></pre>
<p>Depending on what date you want to show you can select the highest using MAX or the lowest using MIN. If you have other criteria you may need to do a subquery.</p>
http://stackoverflow.com/questions/1130066/calling-stored-procedure-with-output-parameter/1130090#11300900Answer by Josh for calling stored procedure with output parameterJosh2009-07-15T08:21:54Z2009-07-15T08:21:54Z<p>you are not setting the OUT parameter in your select.</p>
<p>try updating your statement to:</p>
<pre><code>SET @userVar = CONCAT('SELECT AVG( ' , col , ' ) INTO average FROM ' , tbl );
</code></pre>
http://stackoverflow.com/questions/1125097/is-it-possible-to-refactor-this-mysql-stored-procedure-loop/1125129#11251290Answer by Josh for Is it possible to refactor this MySQL stored procedure loop?Josh2009-07-14T12:44:15Z2009-07-14T12:54:10Z<p>how about building a prepared statement and executing it after the loop</p>
<p><a href="http://dev.mysql.com/tech-resources/articles/4.1/prepared-statements.html" rel="nofollow">http://dev.mysql.com/tech-resources/articles/4.1/prepared-statements.html</a></p>
<pre><code>declare @column_names text;
declare @column_values text;
</code></pre>
<p>Then inside loop add your
column name and values to the variables</p>
<p>When the loop has finished you ccan build your query and execute</p>
<pre><code>set @sql_text = CONCAT('INSERT INTO foobar (', @column_names,
') VALUES (', @column_values, ')';
prepare stmt from @sql_text;
execute stmt;
</code></pre>
<p>Josh</p>
http://stackoverflow.com/questions/1110031/inspect-ui-elements-in-flex/1110043#11100432Answer by Josh for Inspect UI elements in FlexJosh2009-07-10T14:58:26Z2009-07-10T14:58:26Z<p>take a look at <a href="http://www.demonsterdebugger.com/" rel="nofollow">http://www.demonsterdebugger.com/</a></p>
<p>you will have to add some extra code but it is easy to do and gives you a wealth of information. works with Flex, AIR and Flash.</p>
http://stackoverflow.com/questions/1108549/have-a-html-page-play-flash-movie-only-once-not-when-revisited/1108582#11085826Answer by Josh for Have a HTML page play Flash movie only once (not when revisited...)Josh2009-07-10T09:18:09Z2009-07-10T14:55:47Z<p>you could save a cookie the first time the user visits to show that the user has visited before. (<a href="http://plugins.jquery.com/project/Cookie" rel="nofollow">http://plugins.jquery.com/project/Cookie</a>)</p>
<p>Then when they return pass that value to the flash (using flashvars) so it knows only to play the last frame. (<a href="http://bowievanling.com/blog/using-flashvars-with-swfobject-20-and-as3/" rel="nofollow">http://bowievanling.com/blog/using-flashvars-with-swfobject-20-and-as3/</a>)</p>
<p>Using <a href="http://code.google.com/p/swfobject/" rel="nofollow">swfObject</a> to embed your flash:</p>
<pre><code><script type="text/javascript">
var flashvars = {
iscookie: "true"
};
var params = {
menu: "false"
};
var attributes = { };
swfobject.embedSWF("myContent.swf", "myContent", "300", "120", "9.0.0","expressInstall.swf", flashvars, params, attributes);
</script>
</code></pre>
<p>in AS3 to load frameNumber if flashvar iscookie = true:</p>
<pre><code>for (var fv in root.loaderInfo.parameters) {
if(fv == 'iscookie'){
if(root.loaderInfo.parameters[fv] == 'true'){
gotoAndStop(frameNumber);
}
}
}
</code></pre>
<p>Josh</p>
http://stackoverflow.com/questions/1109645/how-to-get-slidedown-to-work-on-a-table/1109666#11096664Answer by Josh for How to get slideDown to work on a table?Josh2009-07-10T13:53:11Z2009-07-10T13:53:11Z<p>try wrapping the table in a div and animate the div.</p>
<p>Josh</p>
http://stackoverflow.com/questions/1109411/complex-xpath-searches-using-attributes/1109426#11094262Answer by Josh for Complex XPath searches using attributes?Josh2009-07-10T13:08:54Z2009-07-10T13:08:54Z<p>try this:</p>
<pre><code>/debts//section[@description='YYYYY']//account
</code></pre>
<p><a href="http://www.bit-101.com/xpath/" rel="nofollow">http://www.bit-101.com/xpath/</a> has a nice tool to test xpath queries.</p>
http://stackoverflow.com/questions/1108543/why-to-move-to-asp-net-mvc-why-not-to-move/1108563#11085631Answer by Josh for Why to move to Asp.NET MVC - why not to moveJosh2009-07-10T09:13:58Z2009-07-10T09:13:58Z<p>also looking at moving at the moment.</p>
<p>the main bonus for me is the complete control over layout. i'm also looking into implementing a restful API which the MVC model works very nicely with because of the path structure.</p>
<p>Josh</p>
http://stackoverflow.com/questions/1108376/asp-net-still-run-without-code-files-how/1108396#11083961Answer by Josh for ASP.NET still run without code files, how?Josh2009-07-10T08:31:46Z2009-07-10T08:31:46Z<p>if the site has been compiled - ie has a bin folder with dlls in it then it doesn't need the code behind files to run. however if you what to change anything you will need them in order to recompile the dlls.</p>
<p>Josh </p>
http://stackoverflow.com/questions/1108361/accessing-the-currently-selected-elements-content-in-a-htmlval-statement-in-jq/1108382#11083822Answer by Josh for Accessing the currently selected element's content in a html(val) statement in jQuery?Josh2009-07-10T08:28:26Z2009-07-10T08:28:26Z<p>try this</p>
<pre><code>$(".mLink").each(function (i) {
var thisText = $(this).find(".mText").text();
$(this).html("<img src='/ImageTextHandler.ashx?
message=" + thisText + "' alt='" + thisText + "'/>");
});
</code></pre>
http://stackoverflow.com/questions/1104667/how-do-i-start-learning-from-other-peoples-code/1104730#11047302Answer by Josh for How do I start learning from other people's code?Josh2009-07-09T15:42:25Z2009-07-09T15:42:25Z<p>i think frameworks are a great place to start.</p>
<p>you've found jQuery which is a javascript framework. take a look at some of the plugins and sites that use it. with javascript you can view the source and see what people have done.</p>
<ul>
<li><p>for CSS take a look at BluePrintCSS -
<a href="http://www.blueprintcss.org/" rel="nofollow">http://www.blueprintcss.org/</a></p></li>
<li><p>for PHP take a look at Zend -
<a href="http://framework.zend.com/" rel="nofollow">http://framework.zend.com/</a> (MVC -
Model/View/Controller programming)</p></li>
<li><p>for CMS systems take a look at Drupal
- <a href="http://drupal.org/" rel="nofollow">http://drupal.org/</a></p></li>
<li><p>for Blogs take a look at WordPress -
<a href="http://wordpress.org/" rel="nofollow">http://wordpress.org/</a></p></li>
</ul>
<p>All of these have active communities that you can follow and plugins/extensions that you can browse through.</p>
<p>Hope that helps.
Josh</p>
http://stackoverflow.com/questions/1102839/as3-timers-vs-enterframe-performance/1102855#11028551Answer by Josh for AS3 Timers vs. ENTER_FRAME performanceJosh2009-07-09T09:42:58Z2009-07-09T09:42:58Z<p>if you aren't using a tween library yet i would look at tweenlite or tweenmax. it includes a delayed called timer as well as grouping tweens together. it has great performance and is simple to use.</p>
<p>take a look here at the performance tests</p>
<p><a href="http://blog.greensock.com/tweening-speed-test/" rel="nofollow">http://blog.greensock.com/tweening-speed-test/</a></p>
<p>Josh</p>
http://stackoverflow.com/questions/1102512/cms-storage-systems/1102558#11025582Answer by Josh for CMS Storage SystemsJosh2009-07-09T08:32:18Z2009-07-09T08:32:18Z<p>I have designed a bespoke CMS system that holds data in a database then 'publishes' it to xml. The XML is then used with xslt templates to display the pages which are then cached for speed.</p>
<p>I'd be interesting to know if anyone else is doing something similar.</p>
<p>Josh</p>
http://stackoverflow.com/questions/1100759/extract-node-from-xml-like-data-without-extra-php-libs/1100831#11008311Answer by Josh for Extract node from XML like data without extra PHP libsJosh2009-07-08T22:14:28Z2009-07-08T22:25:03Z<p>use regular expressions</p>
<pre><code>$text = 'string_input';
preg_match('/<image_link>([^<]+)</image_link>/gi', $text, $regs);
$result = $regs[0];
</code></pre>
http://stackoverflow.com/questions/1099971/how-to-turn-a-very-long-column-into-multiple-shorter-ones/1100020#11000201Answer by Josh for How to turn a very long column into multiple shorter ones?Josh2009-07-08T19:13:08Z2009-07-08T19:13:08Z<p>i would do a count of the array of $("dt") then if it's over a certain size inject a closing and opening then using styling to float them into columns.</p>
<p>Josh </p>
http://stackoverflow.com/questions/1551635/3d-maths-in-flash-as3/1551691#1551691Comment by Josh on 3d maths in Flash AS3Josh2009-10-12T09:39:32Z2009-10-12T09:39:32Zthank you this is all very helpful - i just need to try and figure how to put it all together.http://stackoverflow.com/questions/1551635/3d-maths-in-flash-as3/1551691#1551691Comment by Josh on 3d maths in Flash AS3Josh2009-10-11T20:35:07Z2009-10-11T20:35:07Zthanks for this but i need a little bit of help in understanding what i should be doing. have you got any examples of how i can use a matrix to layout my rectangles.http://stackoverflow.com/questions/1264773/rewrite-a-folder-name-using-htaccessComment by Josh on rewrite a folder name using .htaccessJosh2009-08-12T08:44:58Z2009-08-12T08:44:58Zsorry you need to be clearer what you want to happen. can you give us a step by step what you want to happen eg what the url that the user types in and where the actual file is in your webspace.http://stackoverflow.com/questions/1264773/rewrite-a-folder-name-using-htaccessComment by Josh on rewrite a folder name using .htaccessJosh2009-08-12T08:10:53Z2009-08-12T08:10:53Zdoes the apple folder exist on your webspace too?http://stackoverflow.com/questions/1178475/looking-for-a-free-java-ideComment by Josh on looking for a free java ideJosh2009-07-24T16:21:27Z2009-07-24T16:21:27Zsorry - i was looking on super user as i thought it was a software question.http://stackoverflow.com/questions/1178475/looking-for-a-free-java-ideComment by Josh on looking for a free java ideJosh2009-07-24T15:23:19Z2009-07-24T15:23:19Zi thought as it was a software based question it should be herehttp://stackoverflow.com/questions/1152677/flash-file-upload-vs-php-file-upload-which-one-to-chooseComment by Josh on Flash file upload vs php file upload - which one to choose?Josh2009-07-20T11:54:18Z2009-07-20T11:54:18Zdoesn't facebook use a java based uploader? also has the same issues if java hasn't been installed.http://stackoverflow.com/questions/1135672/what-is-the-best-method-to-detect-xml-in-javascriptComment by Josh on What is the best method to detect xml in JavaScriptJosh2009-07-16T06:58:06Z2009-07-16T06:58:06Zwhat to transform a document with xslt but need to know its xml before i try.http://stackoverflow.com/questions/1131085/removing-duplicate-recordsComment by Josh on Removing duplicate records.Josh2009-07-15T12:29:04Z2009-07-15T12:29:04Zwhich date do you want to display?http://stackoverflow.com/questions/1126678/actionscript-multiple-public-functions-in-one-as-fileComment by Josh on ActionScript: Multiple public functions in one .as file?Josh2009-07-14T17:10:57Z2009-07-14T17:10:57Zwhat is the reason against using a class?http://stackoverflow.com/questions/1125097/is-it-possible-to-refactor-this-mysql-stored-procedure-loop/1125129#1125129Comment by Josh on Is it possible to refactor this MySQL stored procedure loop?Josh2009-07-14T13:05:37Z2009-07-14T13:05:37ZI agree - the question I thought was because they were doing some extra stuff within the loophttp://stackoverflow.com/questions/1108549/have-a-html-page-play-flash-movie-only-once-not-when-revisited/1108582#1108582Comment by Josh on Have a HTML page play Flash movie only once (not when revisited...)Josh2009-07-10T13:14:56Z2009-07-10T13:14:56Zwhat version of actionscript are you using?http://stackoverflow.com/questions/1108549/have-a-html-page-play-flash-movie-only-once-not-when-revisited/1108595#1108595Comment by Josh on Have a HTML page play Flash movie only once (not when revisited...)Josh2009-07-10T10:05:56Z2009-07-10T10:05:56Zare shared objects reliable enough? "Sometimes SWF files may not be allowed to write local shared objects, and sometimes the data stored in local shared objects can be deleted without your knowledge."http://stackoverflow.com/questions/1108499/escape-character-for-space-in-xpathComment by Josh on Escape character for space in XPathJosh2009-07-10T09:01:49Z2009-07-10T09:01:49Zcan you post the html please.http://stackoverflow.com/questions/1108361/accessing-the-currently-selected-elements-content-in-a-htmlval-statement-in-jq/1108399#1108399Comment by Josh on Accessing the currently selected element's content in a html(val) statement in jQuery?Josh2009-07-10T08:36:18Z2009-07-10T08:36:18Zyou've mismatched your quotes should be $("<img>");